请帮我检查下程序错误
本帖最后由 超神奇葩天才 于 2020-9-30 20:03 编辑txt1 = 'test1.txt'
txt2 = 'test.txt'
try:
with open(txt1) as copy:
for line in copy:
z.append(line.rstrip())
with open(txt2) as copy:
x = copy.rstrip()
except FileNotFoundError:
with open(txt1) as copy:
z = ['2']
with open(txt2) as copy:
x = 3
这是一个在没有文档时自动创建文档的程序
你写的是什么程序? 芦蓬蓬的小叶子 发表于 2020-9-30 18:38
你写的是什么程序?
一个读取txt文档的程序
留记录,我也需要用到读取文件,但刚开始学,以后再来你这儿学习
页:
[1]