py_projects/files/school.simple input.chalanger1.py
2024-01-17 10:22:52 +00:00

7 lines
228 B
Python

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")