for-Schleife:
Eine for-Schleife wird zum Durchlaufen einer Sequenz verwendet (entweder eine Liste, ein Tupel, ein Wörterbuch, eine Menge oder ein String).
Syntax:
für Variable in Sequenz
Beispiel:
txt = '1234' for num in txt: print(num,end=' ') output: 1 2 3 4
Wenn Bedingung:
Die If-Anweisung überprüft den Ausdruck, um festzustellen, ob eine Bedingung erfüllt ist, und gibt einen Wert basierend auf der erhaltenen Ausgabe zurück.
syntax: if condition: if condition is True else: if condition is False
Beispiel
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("Ihr Name bitte:")
print(name)
für Alphabet im Namen:
print(alphabet, end='*')
Ausgabe:
R*A*J*A
Der Code überprüft jeden einzelnen Index und gibt die Ausgabe aus.
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
Das obige ist der detaillierte Inhalt vonPython-Sitzung Day-T Payilagam für Schleife und if-Bedingung. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!