我正在创建一个故障排除系统,如果无法给用户答案,我会通过randint
功能为他们分配一个案例编号。我正在努力将这个随机数保存在外部数据库中供以后使用和参考。有人可以通过使用文件的读写方法来帮助我吗?
from random import randint
print('sorry I cannot help you',randint(0,100000))
答案 0 :(得分:2)
with open("Output.txt", "w") as text_file:
some_rand_num = randint(0, 100000)
print('sorry I cannot help you',some_rand_num)
text_file.write("sorry I cannot help you %s" % some_rand_num)