我正在用python写一个电报机器人。我想在此命令中的文本之间打印随机数(从1到9,4位数字):
SyntaxError: Non-ASCII character '\xc3' in file ./<file_name>.py on line 160, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
我该怎么做?也许我可以使用另一个命令来执行此操作,但是我不知道如何。
答案 0 :(得分:0)
替换此:
'example_text1\n'random_number_here\n'example_text2\n'
与此:
'example_text1\n' + str(random.randint(1, 9999)) + '\nexample_text2\n'