python从⽂件中读取数据排序_Python从⽂件中读取数据的⽅
法讲解
编写了⼀个名为的⽂件,内容如下:
[root@centos7 tmp]# cat
In Python you can code;
In Python you can learn object;
In Python you can learn class.
要求:编写⼀个程序,它读取这个⽂件并打印三次。
1、第⼀次打印时读取整个⽂件;
2、第⼆次打印时遍历⽂件对象;
3、第三次打印时将各⾏存储在⼀个列表中,再在with代码块外打印它们。
1、第⼀次打印的代码:
filename = ''
with open(filename) as file_object:
contents = ad()
print(contents.rstrip())
python怎么读取文件中的数据2、第⼆次打印的代码:
filename = ''
with open(filename) as file_object:
#1 contents = ad()
#1 print(contents.rstrip())
for line in file_object:
print(line.rstrip())
3、第三次打印的代码:
filename = ''
with open(filename) as file_object:
#1 contents = ad() 第⼀次打印,⽂件作为⼀个整体
#1 print(contents.rstrip())
#2 for line in file_object: 第⼆次打印,在with模块内
#2 print(line.rstrip())
lines = adlines()
for line in lines: #第三次打印,在with模块外
print(line.strip())
总结
以上就是这篇⽂章的全部内容了,希望本⽂的内容对⼤家的学习或者⼯作具有⼀定的参考学习价值,谢谢⼤家对聚⽶学院的⽀持。如果你想了解更多相关内容请查看下⾯相关链接

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。