这是我到目前为止的代码,如果没有办法编写它,我只需要将它转换为字符串吗?(对不起,如果这是一个愚蠢的问题,我是编码新手)
outfile = input("What would you like the text file index's name to be?")
if os.path.isfile(outfile):
print("Name already used, please choose another")
else:
fp = open(outfile, 'w')
fp.write(count)
fp.write(wordCount)
fp.close
我得到的错误说它必须是一个字符串才能写入输出文件,这有什么问题吗?在此先感谢您的帮助:)