Answers for "else in for loop python"

1

python for/else

for n in range(2, 10):
    for x in range(2, n):
        if n % x == 0:
            print( n, 'equals', x, '*', n/x)
            break
    else:
        # loop fell through without finding a factor
        print(n, 'is a prime number')
Posted by: Guest on July-22-2021
4

python for else

list = [99, 98, 97, 96, 95, 94]

for number in list:
  if number == 2:
    print("There is a 2 in the list")
  	break
else:
  print("There are no 2's in the list")
  
# The else statement is only reached if the for loop
# has run all the way through without breaking
Posted by: Guest on May-18-2020
0

for-else in python

numbers = [2, 4, 6, 8, 1]
for number in numbers:    
  if number % 2 == 1:        
    print(number)        
    break
else:    
  print("No odd numbers")
Posted by: Guest on May-11-2021
0

if loop in python syntax

if a>b :
  print(a)
Posted by: Guest on May-09-2021

Python Answers by Framework

Browse Popular Code Answers by Language