⑴ python簡單的編程代碼
輸入兩個數字,比較大小,然後按照大小輸出def cmpNum():a = input("請輸入一個數字:")b = input("請輸入一個數字:")if a >= b:print(a, b)else:print(b, a)cmpNum()結果一:請輸入一個數字:159請輸入一個數字:456456 159結果二:請輸入一個數字:9568請輸入一個數字:14529568 1452