14 lines
373 B
Python
14 lines
373 B
Python
# Interactive Python Example
|
|
# This example demonstrates interactive input/output
|
|
|
|
name = input("Enter your name: ")
|
|
print(f"Hello, {name}!")
|
|
|
|
age = input("Enter your age: ")
|
|
print(f"You are {age} years old.")
|
|
|
|
favorite_color = input("What is your favorite color? ")
|
|
print(f"Your favorite color is {favorite_color}.")
|
|
|
|
print("Thank you for using the interactive example!")
|