【文本文件读取】
题目内容:用Windows“记事本”创建一个文本文件(文件名自定义),其中每行包含一段英文。
试读出文件的全部内容,并判断:
(1)该文本文件共有多少行?
(2)文件中以大写字母T开头的有多少行?
(3)一行中包含字符最多的和包含字符最少的分别在第几行?
【输入样例】:
例:记事本内容为:
A lot of people today are animal rights advocates.
Some of them are very
Passionate and even qu
【文本文件创建】
题目内容:创建文件data.txt,文件共1000行,每行存放一个20~150之间的整数
import random
filename = "文件路径"
#使用文件用with的好处:会在运行完后自动关闭文件
#as 相当于起别名
with open(filename , "w") as file:
for i in range(1000):
file.write(str(random.randint(20,150)) + "\n")
#with ope