我有一個Python腳本,它以兩個文件作爲參數並運行。有什麼方法可以提示用戶輸入文件嗎?我看過fileinput
方法,但是有什麼辦法可以單獨描述兩個文件嗎?提示用戶輸入Python中的文件
-1
A
回答
2
我想我現在更瞭解你了。
import os
file1 = input("please type the directory path for file 1:\n")
file2 = input("please type the directory path for file 2:\n")
def convert_to_log(afloat):
converted_number = # whatever the conversion equation is. Variable afloat appears here
return converted_number
def load_probabilities(file_in):
prob_list = []
with open(file_in, 'r') as f1:
for line in f1:
try:
prob_list.append(convert_to_log(float(line)))
except:
continue
return prob_list
prob_file1 = load_probabilities(file1)
prob_file2 = load_probabilities(file2)
ratio = list(map(lambda x,y: x/y, a,b)) #calculates probability ratios
print(ratio)
所以我們有一個功能,就是負責裝載文件,並存儲在列表中的概率(load_probabilities)的,並且轉換的概率爲對數(convert_to_log)值獲得附加之前其他功能。這會工作嗎?
相關問題
- 1. 提示用戶輸入文件名
- 2. 提示用戶輸入文件
- 3. Python 2.7 - Tkinter用戶輸入提示
- 4. Python,不斷提示用戶輸入
- 5. 提示用戶輸入
- 6. Node.Js提示用戶輸入
- 7. 將用戶輸入寫入文件python
- 8. 的Python用戶輸入文件路徑
- 9. Extjs messagebox提示限制用戶輸入的文本輸入
- 10. 在Unix中提示用戶輸入文件名稱
- 11. 在R中提示用戶輸入多個文件
- 12. Python:在提示中詢問用戶輸入以前的輸入嗎?
- 13. 在Postman中提示用戶輸入
- 14. 提示用戶輸入正數,並繼續提示用戶輸入正數C++
- 15. Java - 提示用戶輸入文件的方法
- 16. 使用node.js的提示用戶輸入?
- 17. 當他輸入文字時自動提示用戶輸入
- 18. 在python中顯示輸入提示
- 19. pexpect提示輸入python中的空格
- 20. 提示輸入用戶從Git的GUI
- 21. Apple Automator提示用戶輸入文件夾名稱
- 22. 提示用戶輸入文件名或目錄
- 23. 得到.BAT文件或SQLCMD提示用戶輸入
- 24. Unix shell提示用戶輸入文件名
- 25. 提示用戶輸入一個文件保存在
- 26. EditText用戶輸入顯示在提示文本的頂部
- 27. 提示用戶使用boxen輸入
- 28. 如何從python中的用戶輸入創建文本文件?
- 29. 如何使用Python從Bash提示捕獲用戶輸入
- 30. 如何提示用戶在循環中輸入文字?
這個問題很不清楚。預期投入和預期產出是多少? – freakish
你想讓你的python腳本實際加載文件嗎? – LAL
我需要一些類似於raw_input加載文件,並將比代碼將去: – oezlem