如何在此命令中打印随机数?

时间:2019-03-10 17:39:08

标签: python telegram-bot

我正在用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

我该怎么做?也许我可以使用另一个命令来执行此操作,但是我不知道如何。

1 个答案:

答案 0 :(得分:0)

替换此:

'example_text1\n'random_number_here\n'example_text2\n'

与此:

'example_text1\n' + str(random.randint(1, 9999)) + '\nexample_text2\n'