py_projects/files/school.simple input.chalanger1.py

7 lines
228 B
Python
Raw Normal View History

2024-01-17 10:22:52 +00:00
print("Simple input and output")
name = input("What is your name? ")
age = input("How old are you? ")
# string formatting with f-strings
# https://realpython.com/python-f-strings/
print(f"Hello {name}, you are {age} years old")