关于Windows系统下,Python读取文件的问题。

来源:互联网 发布:香港有淘宝吗 编辑:程序博客网 时间:2024/05/07 04:45

在windows系统下,Python读取文件需要输入整个路径的名称,可以不是C盘,也可以是中文名字的路径。

 

输入的方法是函数 open(文件地址,’r’)

 

‘r’ 表示读取,’w’ 表示写入,’a’ 表示添加,’+’ 表示读写,’b’ 表示二进制访问

测试代码如下:

a)

filename = raw_input('Enter file name:')

fobj = open (filename, 'r')

for eachLine in fobj:

   print eachLine,

fobj.close()

 

运行后

>>>

Enter file name:G:\interesting\text.txt

I am a learner,

 

I like Python,

 

I want Python read this file.

 

Hello World

 

b) filename = raw_input('Enter file name:')

fobj = open (filename, 'r')

for eachLine in fobj:

   print eachLine,

print 'You makeit! Congratulations!'

 

fobj.close()

 

运行后

Enter file name:G:\interesting\text.txt

I am a learner,

You make it! Congratulations!

 

You make it! Congratulations!

I like Python,

You make it! Congratulations!

 

You make it! Congratulations!

I want Python read this file.

You make it! Congratulations!

 

You make it! Congratulations!

Hello World You make it! Congratulations!

之所以这里会有两行’ You make it! Congratulations!’是因为我在编辑text.txt时候,每一行后面都输入了两个回车

 

c)

filename = raw_input('Enter file name:')

fobj = open (filename, 'r')

for eachLine in fobj:

   print eachLine,

print '\n\

\

You make it! Congratulations!'

 

fobj.close()

运行后

>>>

Enter file name:G:\interesting\text.txt

I am a learner,

 

I like Python,

 

I want Python read this file.

 

Hello World

You make it! Congratulations!

在这里,我们发现,在print函数当中,’\n’会打印一个回车,’\’表示换行后继续打印,但是不管换几行,都会直接跳过这些回车,而不是打印这些回车。

 

d)更改文件名为’测试.txt’

filename = raw_input('Enter file name:')

fobj = open (filename, 'r')

for eachLine in fobj:

   print eachLine,

print '\n\

\

You make it! Congratulations!'

 

fobj.close()

 

运行后

>>>

Enter file name:G:\interesting\测试.txt

I am a learner,

 

I like Python,

 

I want Python read this file.

 

Hello World

You make it! Congratulations!

 

 

0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 孕妇四维小孩不配合怎么办 孕妇吃了甜酒酿怎么办 屁股疼的不能动怎么办 小孩打针后手臂疼痛怎么办 屁股打针的地方疼怎么办 眼底坏了怎么办怎么治 大疆无人机飞丢了怎么办 两岁半宝宝发热灌肠后便秘怎么办 发烧灌肠后一直拉稀怎么办 孩子便秘用开塞露引起肚子疼怎么办 老人大便干燥拉不出来怎么办 海底捞排队过号怎么办 脱毛后吃了海鲜怎么办 脂肪填充变丑了怎么办 全切双眼皮伤口长包怎么办 鼻综合修复眼中心修太宽怎么办 fgo的id忘了怎么办 电脑下载模拟器显示内存不够怎么办 安逍遥模拟器运行一段时间卡怎么办 pos机微信支付签到失败怎么办 逆水寒fps过低怎么办 电脑卡怎么办怎么清理磁盘 苹果手机设置找不到了怎么办 苹果手机自动拨出电话怎么办 机械键盘灯坏了怎么办 黄金塔花叶子卷怎么办 办的宽带不用了怎么办 取卵后3天还出血怎么办 取卵后腹水怎么办9天了 取卵后第三天肚子涨第天移植怎么办 取卵移植后肚子涨怎么办 没有成熟的卵泡不排卵怎么办 产后9年妊娠纹痒怎么办 手机屏幕锁了忘记密码怎么办 电脑被黑客锁屏怎么办 r9解锁密码忘了怎么办 oppor9开机密码忘了怎么办 vivo手机忘记解锁图案怎么办 oppor9s解锁图案忘了怎么办 oppor9图案解锁忘记了怎么办 oppor9解锁图案忘了怎么办