Welcome to Python. One of the very first things you'll do is store information in variables and print it to the screen.
In this exercise you'll build a tiny "about me" program for a fictional student named Alex. The values are already set up for you — your job is to print them out, one piece of information per line.
Your tasks
Given these starting values:
name = "Alex Carter"
age = 28
city = "Springfield"
favorite_language = "Python"
1. Print the value stored in name
2. Print the value stored in age
3. Print the value stored in city
4. Print the value stored in favorite_language
Expected output
Alex Carter
28 Springfield
Python
Constraints
- Use a separate
print() call for each value
- Print the variables directly — do not retype the values as text
- No external libraries