myfile.write(Car_Number_plate+str' went at',+ Speed_In_Miles_Per_Hour+'/n')
我在python上遇到语法错误,我正在尝试写入文本文件。
答案 0 :(得分:1)
是的,你愿意。以下是您正在尝试的有效语法:
with open("file.txt", "w") as myfile:
myfile.write(Car_Number_plate + ' went at ' + Speed_In_Miles_Per_Hour + '/n')
为了做得更好,你可能打算输入\n
换行,而不是/n
,你可能想确保这些变量是字符串或者不要使用{{1组合它们。你也应该让PEP8更友好。所以:
+