Skip to content

Latest commit

 

History

History
38 lines (24 loc) · 740 Bytes

1_1.md

File metadata and controls

38 lines (24 loc) · 740 Bytes

Answer for basic questions for core python

Print your name using python. explanation
print("My name is Your_Name")

Print your name using variable in python. explanation
name = "Your_Name"
print("My name is", name)

# another way
print("My name is" + name)

# another way
print(f"My name is {name}")

Print your name and age using python. explanation
print("My name is Your_Name and I am 25 years old.")

Print your name and age using variable in python. explanation
name = "Your_Name"
age = 25
print(name)