Home >Backend Development >Python Tutorial >Python conditional judgment and looping
score = 75 if score >= 60: print 'passed'
score = 55 if score >= 60: print 'passed' else: print 'failed'
score = 85 if score >= 90: print 'excellent' elif score >= 80: print 'good' elif score >= 60: print 'passed' else: print 'failed'
L = [75, 92, 59, 68] sum = 0.0 for x in L: sum = sum + x print sum / 4
sum = 0 x = 1 while x <h4>6. Python’s break to exit the loop </h4><pre class="brush:php;toolbar:false">sum = 0 x = 1 n = 1 while True: if n > 20: break sum = sum + x x = x * 2 n = n + 1 print sum
sum = 0 x = 0 while True: x = x + 1 if x > 100: break if x % 2 == 0: continue sum = sum + x print sum
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 <p>For more Python's conditional judgment and loop related articles, please pay attention to PHP Chinese website ! </p><p><br><br></p>