FirstTest/helloworld.py
2026-03-08 19:58:37 +02:00

4 lines
271 B
Python

# This program greets the user with their name and age
name = input("Enter your name: ") # Ask for the user's name
age = input("Enter your age: ") # Ask for the user's age
print("Hello World", name, "you are", age, "years old") # Display the greeting with name and age