ホームページ >バックエンド開発 >Python チュートリアル >Pythonセッションday-tペイラガムforループとif条件
for ループ:
for ループは、シーケンス (リスト、タプル、辞書、セット、文字列のいずれか) を反復処理するために使用されます。
構文:
シーケンス内の変数
例:
txt = '1234' for num in txt: print(num,end=' ') output: 1 2 3 4
条件の場合:
If ステートメントは、式をチェックして条件が満たされているかどうかを確認し、取得した出力に基づいて値を返すことによって機能します。
syntax: if condition: if condition is True else: if condition is False
例
x=20 if x>=20: print(x is within 20) else : print(x is above the limit) output: x is within 20
txt = '12a4' for num in txt: if num>='0' and num<='9': print(num,end=' ') else: print('Not Decimal',end=' ') Output: 1 2 Not Decimal 4 above code is the example of combines if and for.
name = input("あなたの名前をお願いします: ")
print(名前)
名前のアルファベットの場合:
print(アルファベット, end='*')
出力:
ラ*ア*ジャ*ア
コードはすべてのインデックスをチェックし、出力を出力します。
name1 = input("Enter the first name: ") name2 = input("Enter the second name: ") name3 = input("Enter the third name: ") name4 = input("Enter the fourth name: ") name = [name1, name2, name3, name4] for letter in name: if letter[0]=='G': print(letter) else: continue for alphabet in name: if alphabet[-1]=='a': print(alphabet) else: continue for alpha in name: for i in alpha: if i==' ': print(alpha) else: continue for character in name: if len(character)>9: print(character) else: continue output: Enter the first name: Guhanraja Enter the second name: Lakshmi Pritha Enter the third name: Guru Prasanna Enter the fourth name: Varatharajan Guhanraja Guru Prasanna Guhanraja Lakshmi Pritha Guru Prasanna Lakshmi Pritha Guru Prasanna Lakshmi Pritha Guru Prasanna Varatharajan
以上がPythonセッションday-tペイラガムforループとif条件の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。