Answers for "if if else in 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
2

if else python

#if else conditions in python
a = "if else conditions are inportant"
if "else" in a:
  print("Word is in a")
else:
  print("word is not in a")
Posted by: Guest on June-21-2021
2

if statement python

#a statement that checks if a condition is correct
#example:
x=5
if x == 5:
  print("x is 5")
else:
  print("x is not 5")
Posted by: Guest on November-20-2020
1

if else python

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

if statements python

water = input('Does your creature live underwater?')
if water == 'yes':
	print('Your creature lives underwater')
else:
	print('Your creature does not live underwater')
Posted by: Guest on October-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language