2017-03-04 77 views
-4

我正在創建一個故障排除系統,如果答案不能提供給用戶,我通過randint函數爲它們指定一個案例號。我很努力地將這個隨機數存入外部數據庫以供日後使用和參考。有人可以通過使用從文件中讀取和寫入的方法來幫助我嗎?如何將我的Python代碼的一部分保存在文本文件中?

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

請提供您的問題[MCVE。 – idjaw

+0

的可能的複製[蟒紋字符串爲文本文件(http://stackoverflow.com/questions/5214578/python-print-string-to-text-file) –

回答

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

+0

我一定要救我想要的數字文件將其保存爲Output.txt? –

+0

是的,你可以改變文件名,也可以在任何你想要的地方保存位置! – manvi77

+0

我做到了這一點,但它不叫輸出文件中打印:(做我必須做的記事本? –

相關問題