Python读取文件的4种方式,包括read()、read(字节数)、readlines()、readline()方式。
file0 = open("a.txt", "r") content = file0.read() print(type(content)) # <class 'str'> print(content) file0.close()
file1 = open("a.txt", "r") # 一次读取2个字节数据 content = file1.read(2) print(type(content)) # <class 'str'> print(content) # 从上次读取的位置继续读取剩下的所有的数据 content = file1.read() print(content) file1.close()
''' 学习中遇到问题没人解答?小编创建了一个Python学习交流QQ群:725638078 寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书! ''' file2 = open("a.txt", "r") content = file2.readlines() print(type(content)) # <class 'list'> print(content) # ['python\n', 'java\n', 'AI'] file2.close() i = 1 for temp in content: print(f"{i}:{temp}") i += 1 file2.close()
file3 = open("a.txt", "r") content = file3.readline() print(type(content)) # <class 'str'> print("1:%s" % temp) content = file3.readline() print(type(content)) # <class 'str'> print("2:%s" % temp) file3.close()
结尾给大家推荐一个非常好的学习教程,希望对你学习Python有帮助!
Python基础入门教程推荐:更多Python视频教程-关注B站:Python学习者
Python爬虫案例教程推荐:更多Python视频教程-关注B站:Python学习者