菜鸟在这里。我需要使用 read(而不是 readlines()) 方法(它为多个函数提供输入)读取文件,并识别该文件中的所有行(即打印或附加到列表)。
我试过加入、拆分、附加到列表,但几乎没有显示。
# Code I'm stuck with:
with open("text.txt", 'r') as file:
a = file.read()
# Stuff that doesn't work
for line in a:
# can't manipulate when using the below, but prints fine
# print(line, end = '')
temp = (line, end = '')
for line in a:
temp = ''
while not ' ':
temp += line
new = []
for i in a:
i = i.strip()
我倾向于将所有内容都放在一个长字符串中,或者 'I', ' ', 't','e','n','d',' ', 't','o' .... 得到个别字符。尽管文件使用 read() 存储在内存中,但我只是想将每一行都设置为换行符 \n,或者基本上,readlines() 会给我什么
拉风的咖菲猫
慕村9548890
RISEBY
相关分类