write a program that: stores your name in one variable called name stores your age in another variable…

write a program that: stores your name in one variable called name stores your age in another variable called age prints a one - line greeting that includes your name and your age. your program should output something like this: hi! my name is arthur and i am 62 years old. hint: do not get user input for the values of name and age but instead simply save these values inside your program as static variables, or variables that do not change value.

write a program that: stores your name in one variable called name stores your age in another variable called age prints a one - line greeting that includes your name and your age. your program should output something like this: hi! my name is arthur and i am 62 years old. hint: do not get user input for the values of name and age but instead simply save these values inside your program as static variables, or variables that do not change value.

Answer

Explanation:

Step1: Define variables in Python

name = "Your Name"
age = Your_Age

Step2: Print the greeting

print(f"Hi! My name is {name} and I am {age} years old.")

Answer:

The following is the Python code:

name = "Your Name"
age = Your_Age
print(f"Hi! My name is {name} and I am {age} years old.")

(Replace "Your Name" with your actual name and "Your_Age" with your actual age)