Answers for "if statement inside if statement python"

11

if else python

# IF ELSE ELIF 

print('What is age?')
age = int(input('number:')) # user gives number as input
if age > 18:
    print('go ahead drive')
elif age == 18:
    print('come personaly for test')
else:
    print('still underage')
Posted by: Guest on August-12-2020
1

Can there be an if statement inside an if statement python

You can use if statments in if statments. It's all good
Posted by: Guest on February-25-2021

Code answers related to "if statement inside if statement python"

Python Answers by Framework

Browse Popular Code Answers by Language