辞書内のキーと値のペアを取得
>>> x={'a':1,'b':2} >>> key,value=x.popitem() >>> key,value ('a', 1) >>> del x[key] Traceback (most recent call last): File "<pyshell#16>", line 1, in <module> del x[key] KeyError: 'a' >>> x {'b': 2} >>> x[key]=value >>> x {'a': 1, 'b': 2} >>> del x[key]
インクリメンタル代入
>>> x=2 >>> x+=1 >>> x*=2 >>> x >>> fnord='foo' >>> fnord+='bar' >>> fnord*=2 >>> fnord 'foobarfoobar'
条件付き実行 if 文
>>> name=raw_input('?') ?Yq Z >>> if name.endswith('Z'): \ print 'Hello,Mr.Z' Hello,Mr.Z
else 句
>>> name=raw_input('what is your name?') what is your name?Yq Z >>> if name.endswith('Z'): print 'Hello,Mr.Z' else: print 'Hello,stranger' Hello,Mr.Z
elif 句
>>> num=input('Enter a number: ') Enter a number: 5 >>> if num>0: print 'The number is position' elif num<0: print 'The number is negative' else: print 'The number is zero' The number is position
条件付きネスト文
>>> name=raw_input('What is your name?') What is your name?Yq Z >>> if name.endswith('Yq'): if name.startswith('Z'): print 'Hello,Yq Z' elif name.startswith('K'): print 'Hello,Zyq' else: print 'Hello,Yq' else: print 'Hello,stranger' Hello,stranger
>>> number=input('Enter a number between 1 and 10:') Enter a number between 1 and 10:6 >>> if number<=10 and number>=1: print 'Great!' else: print 'Wrong!' Great!rreee
while ループ
>>> age=10 >>> assert 0<age<100 >>> age=-1 >>> assert 0<age<100 Traceback (most recent call last): File "<pyshell#21>", line 1, in <module> assert 0<age<100 AssertionErrorrree
forループ
>>> x=1 >>> while x<=100: print x x+=1
辞書ループ (反復)
>>> while not name: name=raw_input('Please enter your name:') print 'Hello,%s !' % name Please enter your name:zyq Hello,zyq !
並列反復
>>> words=['this','is','an','ex','parrot'] >>> for word in words: print word this is an ex parrot >>> range(0,10) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] >>> for i in range(1,8): print i 2 4 6rreee
番号付き反復
>>> d={'x':1,'y':2,'z':3} >>> for key in d: print key,'corresponds to',d[key] y corresponds to 2 x corresponds to 1 z corresponds to 3
反転、並べ替え反復
>>> names=['Anne','Beth','George','Damon'] >>> ages=[12,19,18,20] >>> for i in range(len(names)): print names[i],'is',ages[i],'years old' Anne is 12 years old Beth is 19 years old George is 18 years old Damon is 20 years old
ループから抜け出す
>>> zip(names,ages) [('Anne', 12), ('Beth', 19), ('George', 18), ('Damon', 20)] >>> for name,age in zip(names,ages): print name,'is',age,'years old' Anne is 12 years old Beth is 19 years old George is 18 years old Damon is 20 years old >>> zip(range(5),xrange(100)) [(0, 0), (1, 1), (2, 2), (3, 3), (4, 4)]
while True/break
>>> d [1, 2, 4, 4] >>> for x in d: if x==4: d[d.index(x)]=6 >>> d [1, 2, 6, 6] >>> S=['skj','kiu','olm','piy'] >>> index=0>>> for s1 in S: if 'k' in s1: S[index]='HH' index+=1 >>> S ['HH', 'HH', 'olm', 'piy']>>> for index,s2 in enumerate(S): #enumerate函数提供索引-值对 if 'H' in s2: S[index]='DF' >>> S ['DF', 'DF', 'olm', 'piy']
ループ内のelseステートメント
>>> sorted([4,3,6,8,3]) [3, 3, 4, 6, 8] >>> sorted('Hello,world!') ['!', ',', 'H', 'd', 'e', 'l', 'l', 'l', 'o', 'o', 'r', 'w'] >>> list(reversed('Hello,world!')) ['!', 'd', 'l', 'r', 'o', 'w', ',', 'o', 'l', 'l', 'e', 'H'] >>> ''.join(reversed('Hello,world!')) '!dlrow,olleH'リスト理解 - 軽量ループ
>>> for n in range(99,0,-1): m=sqrt(n) if m==int(m): print n breakpass
>>> while True: word=raw_input('Please enter a word:') if not word:break print 'The word was '+word Please enter a word:f The word was f Please enter a word:del x と y は同時にリストを指しますが、x を削除しても y には影響しません。リスト自体 (値) ではなく、名前のみが削除されます
>>> for n in range(99,81,-1): m=sqrt(n) if m==int(m): print m break else: print 'h' hexec
>>> [x*x for x in range(10)] [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] >>> [x*x for x in range(10) if x%3==0] [0, 9, 36, 81] >>> [(x,y) for x in range(3) for y in range (3)] [(0, 0), (0, 1), (0, 2), (1, 0), (1, 1), (1, 2), (2, 0), (2, 1), (2, 2)] >>> result=[] >>> for x in range(3): for y in range(3): result.append((x,y)) >>> result [(0, 0), (0, 1), (0, 2), (1, 0), (1, 1), (1, 2), (2, 0), (2, 1), (2, 2)] >>> girls=['Alice','Bernice','Clarice'] >>> boys=['Chris','Arnold','Bob'] >>> [b+'+'+g for b in boys for g in girls if b[0]==g[0]] ['Chris+Clarice', 'Arnold+Alice', 'Bob+Bernice']注: 名前空間はスコープと呼ばれます。これは、目に見えない辞書のような、変数を保持する場所であると考えてください。 x=1 などの代入ステートメントを実行すると、キー x と値 1 が現在の名前空間に配置されます。この名前空間は通常、グローバル名前空間です。
>>> if name=='Nsds': print 'Welcome!' elif name=='UK': #还没完 pass elif name=='Bill': print 'Access Denied' else: print 'Nobody!'eval が
>>> x=['Hello','world'] >>> y=x >>> y[1]='Python' >>> x ['Hello', 'Python'] >>> del x >>> y ['Hello', 'Python']
を評価します
以上がPython の条件、ループなどの概要の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。