4b46b42de4b5457dbbeb41cfdf2.../main.py
2025-06-10 16:27:57 +00:00

15 lines
338 B
Python

def main():
# Declare and assign variables of different types
user_name = "Alice"
age = 25
is_student = True
score = 95.5
# Display variables using print
print("Name:", user_name)
print("Age:", age)
print("Is Student?", is_student)
print("Score:", score)
if __name__ == "__main__":
main()