py_projects/projects/chalange1/school.simple input.chalanger1.py
AlexVeeBee 4b9567749c Sort
2024-01-24 18:05:08 +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")