如何在文本文件中保存我的python代码的一部分?

时间:2017-03-04 13:43:10

标签: python database text-files

我正在创建一个故障排除系统,如果无法给用户答案,我会通过randint功能为他们分配一个案例编号。我正在努力将这个随机数保存在外部数据库中供以后使用和参考。有人可以通过使用文件的读写方法来帮助我吗?

from random import randint
print('sorry I cannot help you',randint(0,100000))

1 个答案:

答案 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)

供参考:https://docs.python.org/2/tutorial/inputoutput.html