python輸入數據得最大最小值

代碼: count = int(input(‘輸入數據個數:\n’)) a = 1 while a <= count: num = int(input(‘請輸入第{}個數:’.format(a))) #字符串中的方法 if a == 1: #這句一定會執行,而且只執行一次,目的就是讓你輸入的第一個數作爲根據與之後的數比較 max = min = num #第二個及以後的數都會走else, else
相關文章
相關標籤/搜索