breaki 发表于 2020-7-13 15:30:47

Python

boy = ['11']
s = 'yo'+'.txt'
boy_file = open('s','w')
boy_file.writelines(boy)
为什么文件名不是yo.txt。而是s。

Twilight6 发表于 2020-7-13 15:31:37


因为你 open 里面的 s 加上了引号 表示字符串,Python 的open 函数就会认为你要创建名为 's' 的文件

boy_file = open(s,'w')

引号去了就行

sunrise085 发表于 2020-7-13 15:32:44

你的程序写错了吧,应该是
boy_file = open(s,'w')
s不能加引号,加引号就变成字符串了,不加引号是变量

小甲鱼的铁粉 发表于 2020-7-13 15:41:55

{:10_257:}看一看
页: [1]
查看完整版本: Python