#43813: python 新手看過來 一看完就懂 (認真想學再進來看) 包含基本的輸入 看完記得給個讚!


wghs1120242 (brucechen)

學校 : 臺北市私立薇閣高級中學
編號 : 284067
來源 : [60.248.154.143]
最後登入時間 :
2024-11-04 10:57:42
a001. 哈囉 -- Brian Kernighan | From: [60.248.154.143] | 發表日期 : 2024-11-01 15:53

把下面全部複製到你寫python 的編譯器中 比較好看!

a = input()#輸入字串
a = int(a)#將字串轉為數字
#亦可將上方兩行縮減為
a = int(input())
#若想輸入兩個字串 應該表示為:
a,b = input().split()
#則輸入 handsome boy時
# a = 'handsome';b = 'boy'
#同理 若想輸入兩個數字 應該表示為:
a,b = input().split()
a,b = int(a),int(b)
#亦可將上方兩行縮減為:
a,b = map(int,input().split())
#利用map函式將input().split()進行整數化
#a,b = map(int,input().split())也可以寫成:
a,b = [int(x) for x in input().split()]
#上面這行為list comprehension(俗稱'串列生成式')
#比較建議使用第16行的寫法
#因為在串列(list)時也可以使用
#ex:
a = [int(x) for x in input().split()]
#則輸入 8 7 6 5 時
# a會變為串列的型態
#a[0] a[1] a[2]....
#而此時a[0]=8 a[1]=7 a[2]=6 a[3]=5
#使用串列時請注意 變數储存是由a[0]開始

 

 
ZeroJudge Forum