目標:我正在嘗試創建一個可以輸入10個數字然後吐出10個最大數字的程序。我有麻煩的Python功能,有人可以幫助我嗎?
我需要所有能夠插入的整數,然後讓程序找到可能性並查看其中哪些最大。
#Introduction
print ('Enter 10 odd numbers to see which is the greatest ')
#The big question
user_input = raw_input ('Enter a odd number ')
#Input function that only accepts intergers
numbers = []
while numbers < 11:
try:
numbers.append(int(raw_input(user_input)))
break
except ValueError:
print 'Invalid number'
#Function that finds the highest odd and sees if it is odd
highest_odd = max(user_input) and user_input % 2 != 0
print 'The largest odd number was' + str(highest_odd)
如果你想在10個號碼,然後吐出的10大,你可以打印你的輸入。 – Marcin
_「我需要所有能夠插入的整數,然後讓程序找到可能性並查看其中哪些是最大的。這是我的嘗試,但它不起作用。」_什麼部分不起作用?你認爲問題在哪裏? –