爬虫 python基础练习(文件的读取)

# -*- codeing = utf-8 -*-
# @Time : 2021/2/10 16:58
# @Author : foryou
# @File : demo7.py
# @Software: PyCharm
'''
f=open("test.txt","w")  #read方法,读取指定的字符,开始时指定在文件头部,
                        # 每执行一次,向后移动指定字符数
                        #打开文件:w写模式 文件不存在就新建
                        #默认为r只读 如果文件不存在则报错
                        #rb用二进制打开一个文件 只读 binary
f.write("hello world,i'm here") #将字符串写入文件中
f.close() #新建文件  养成习惯每次打开都要写上关闭
'''
'''
f = open("test.txt","r")
content = f.readlines()  #全部放到内存里 以列表形式
                         #一次性读取全部文件为列表,每行一个字符串元素

for i,temp in enumerate(content):
    i += 1
    print("%d:%s"%(i,temp))
f.close()
'''
#输出text里面的文件
f = open("test.txt","r")
for i in range(4):
    content=f.readline()
    print("%d:%s"%(i+1,content),end="")
f.close()

你可能感兴趣的:(练习,爬虫,python,列表)