This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("Hello World") | |
name = input("Enter your name: ") | |
print(f"Your name is: {name}") | |
age = input("Enter you age: ") | |
print(f"You're {age} years old") | |
# You could add more code here if you like | |