所以我有一個大約有 400 行的文本檔案,每一行都有一個數字,我需要找到這些數字中最小的一個。
我目前有
def smallestnumber(fread, fwrite):
number = {int(line) for line in fread}
smallest = min(number)
print ("smallest number is", smallest)
但由于某種原因它不起作用。在 .txt 檔案中獲得最小數字的最佳方法是什么?(fread 是我在 main() 函式中打開的 .txt 檔案!一旦我設法弄清楚了,我會將數字寫入 fwrite,哈哈)
編輯:我在最小的 = min(number) 部分收到一個錯誤 (ValueError),說“min() arg 是一個空序列”。
EDIT2:我之前使用 test.txt 檔案來測驗代碼,它只是
1000 700 450 200 100 10 1 每個在不同的行上 所以格式/型別與我應該使用的檔案相同
fread(我得到數字的地方)和 fwrite(我想保存數字的地方)在 main() 中定義如下
name= input("Give the name of the file which to take data from: ")
fread = open(name, "r") #File which is being read
name2= input("Give the name of the file where to save to: ")
fwrite = open(name2, "w") #File which is being typed to
我很抱歉這個問題可能有錯誤的“格式化”等,我是 python 和 StackOverflow 的新手!
謝謝您的幫助!
uj5u.com熱心網友回復:
def smallestnumber(fread, fwrite):
# store the numbers in a list
numbers = [int(line) for line in fread]
# sort the list so that the smallest number is the first element of the list
numbers.sort()
# print the first element of the list which contains the smallest number
print ("smallest number is: {0}".format(numbers[0])
我沒有運行代碼,但它應該可以作業。如果您有更多的錯誤檢查,那將是最好的。例如,int(line)如果line不是數字,則可能會引發例外。
您的代碼不起作用,因為串列推導式應該使用方括號而不是大括號。
應該[int(line) for line in fread]和不是{int(line) for line in fread}
有了串列后,該功能min也將起作用。
uj5u.com熱心網友回復:
max=-9999
for line in open('lines.txt').readlines():
#print(line)
for word in line.split():
#print(word,word.isnumeric())
if word.isnumeric() and int(word)>max:
max=int(word)
print(max)
轉載請註明出處,本文鏈接:https://www.uj5u.com/qukuanlian/318440.html
