Answers for "default input in python"

2

python default input

# Python 3:
age = input('Enter your age: ') or 18

# Older versions:
age = int(raw_input('Enter your age: ') or 18)
Posted by: Guest on June-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language