Heim  >  Artikel  >  Backend-Entwicklung  >  Bedingte Beurteilung und Schleife in Python

Bedingte Beurteilung und Schleife in Python

高洛峰
高洛峰Original
2017-02-17 11:17:091421Durchsuche


Bedingte Beurteilung und Schleife in Python

1. Python if-Anweisung

score = 75
if score >= 60:
    print 'passed'

2. Python if-else

score = 55
if score >= 60:
    print 'passed'
else:
    print 'failed'

3. Pythons if-elif-else

score = 85
if score >= 90:
    print 'excellent'
elif score >= 80:
    print 'good'
elif score >= 60:
    print 'passed'
else:
    print 'failed'

4. Pythons for-Schleife

L = [75, 92, 59, 68]
sum = 0.0
for x in L:
    sum = sum + x
print sum / 4

5. Pythons while-Schleife

sum = 0
x = 1
while x < 100:
    sum = sum + x
    x = x + 2
print sum
Pythons break verlässt die Schleife

sum = 0
x = 1
n = 1
while True:
    if n > 20:
        break
    sum = sum + x
    x = x * 2
    n = n + 1
print sum
7. Pythons continue setzt die Schleife fort

sum = 0
x = 0
while True:
    x = x + 1
    if x > 100:
        break
    if x % 2 == 0:
        continue
    sum = sum + x
print sum
8. Pythons continue setzt die Schleife fort

for x in [1, 2, 3, 4, 5, 6, 7, 8, 9]:
    for y in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]:
        if x < y:
            print x * 10 + y
Für weitere Python-Bedingungen Bei Artikeln zu Beurteilung und Schleife achten Sie bitte auf die chinesische PHP-Website!



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:Python-Dict- und Set-TypenNächster Artikel:Python-Dict- und Set-Typen