Answers for "if else loop python"

3

how to use if else in python

print("Welcome to Rolercoster rider")
print()
#taking input of your hight
Your_hight = int(input("What is Your hight:- "))
#if condition 
if Your_hight >= 120:
    print("You are good to go to the roller coster")
else:
    print("Grow taller to go to the rolercoster")
Posted by: Guest on July-31-2021
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
1

else if python

name = input("What's your name? n") # Asks user for a name

# Following if order:
# first program checks if the if is true
# next program lists down the elifs (or else ifs) in the order 
# in which they are listed
# Lastly, if there is an else, program does whatever is inside
# of there.

if name == "Aguy12": # First checks if they answered "Aguy12"
  print("Wait a second...")
elif name == "Aguy11": # Then checks if they answered with "Aguy11"*
  print("Now that's definitely not true")
else: # If none of those are true greets the person accordingly
  print(f"Hello, {name}!")
  
# * ONLY IF THE IF STATEMENT IS NOT TRUE
Posted by: Guest on January-23-2021
1

if else python

if condition:
   result
elif condition:
   result
else:
   result
Posted by: Guest on January-11-2021

Python Answers by Framework

Browse Popular Code Answers by Language