最近开始学习Python。
我定义了标题和价格。
现在,我希望Python创建一个文本文件,并在新创建的文本文件中输入“title”和“price”的内容
print(title)
print(price)
fh = open("Price&Title", "w")
fh.write()
fh.close()
上面的代码不起作用。
可以使用print
的file
参数:
fh = open("Price&Title", "w")
print(title, file=fh)
print(price, file=fh)
fh.close()