0895b2e2dcba466986a1c852487.../main.py
2025-06-11 12:59:26 +00:00

17 lines
372 B
Python

def main():
# Declare and assign variables of different types
user_name = "Alice"
age = 25
is_student = True
score = 95.5
# Create a dictionary to hold the variables
response = {
"Name": user_name,
"Age": age,
"Is Student": is_student,
"Score": score
}
# Return the response
return response