largest = None
smallest = None
while True:
num = input("Enter a number: ")
if num == "done":
break
try:
inp = int(num)
except:
print("Invalid Input")
continue
if largest is None or num > largest:
largest = inp
if smallest is None or num < smallest:
smallest = inp
print("Maximum is", largest)
print("Smallest is", smallest)
-1
A
回答
0
相關問題
- 1. 類型錯誤:不支持的操作類型爲:「海峽」和「廉政」
- 2. 類型錯誤:不支持的操作類型爲**或POW():「海峽」和「廉政」
- 3. 類型錯誤:不支持的操作數類型(S)爲/: '海峽' 和 '廉政'
- 4. 類型錯誤:「<=」沒有的實例之間支持「複雜」和「廉政」
- 5. 錯誤:不支持的操作類型爲 - :「海峽」和「海峽」
- 6. uTypeError:不支持的操作數類型(S) - : '海峽' 和 '海峽'
- 7. 「海峽」對象不支持
- 8. 的Python類型錯誤:不支持的操作數類型(S) - :「海峽」和「廉政」
- 9. Seaborn箱線圖:類型錯誤:不支持的操作數類型(S)爲/: '海峽' 和 '廉政'
- 10. 類型錯誤:不支持的操作類型爲 - :在Python「海峽」和「廉政」 3
- 11. 類型錯誤:不支持的操作數類型(S)爲/:「海峽」和「海峽」
- 12. 錯誤類型錯誤:不支持的操作類型爲 - :「海峽」和「海峽」
- 13. 類型錯誤:不支持的操作類型爲 - :「海峽」和「海峽」
- 14. TypeError:'> =''type'和'int'的實例之間不支持
- 15. TypeError:在'str'和'int'的實例之間不支持'>'
- 16. TypeError:'> =''list'和'int'的實例之間不支持
- 17. TypeError:'>'在'int'和'str'實例之間不受支持
- 18. Python的 - 不支持的操作類型爲/:「builtin_function_or_method」和「廉政」
- 19. 不支持的操作數類型(S)爲+:「功能」和「廉政」
- 20. 不支持的操作數類型(S):「功能」和「廉政」
- 21. 「>」不「方法,包裝」和「廉政」
- 22. 不支持的操作類型爲 - :「詮釋」和「海峽」
- 23. 不支持的操作數類型「浮動」和「海峽」
- 24. 不支持的操作數類型(S) - : '海峽' 和 '浮動'
- 25. 爲+不支持的操作數類型(S): 'RegexURLPattern' 和 '海峽'
- 26. TypeError:實例之間不支持「<」Python
- 27. 爲什麼我得到這種類型的錯誤?類型錯誤:「> =」「海峽」和「廉政」
- 28. 不支持數類型爲/:「海峽」和「浮動」
- 29. * STR和*海峽++
- 30. 追加海峽到海峽
的可能的複製[類型錯誤: '<=' 不是 'STR' 和 'INT' 的實例之間支承](https://stackoverflow.com/questions/41950021/typeerror-not-在str和int的實例之間支持) – miradulo
P在這裏加入你的代碼。這對我們來說不是一件好事 – AK47