Answers for "input age in python"

2

input age in python

# Take user input in python
age = int(input("Type the age: "))
if age <= 18:
    print("You are too young to enter here")
Posted by: Guest on February-25-2022

Python Answers by Framework

Browse Popular Code Answers by Language