Compare commits

..

No commits in common. "v13" and "main" have entirely different histories.
v13 ... main

3 changed files with 2 additions and 26 deletions

View File

@ -1 +1,2 @@
# python hello-world # db5d887b61064a009ee1f313f1f95787

23
main.py
View File

@ -1,23 +0,0 @@
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
if __name__ == "__main__":
result = main()
# Print the response for demonstration
for key, value in result.items():
print(f"{key}: {value}")

View File

@ -1,2 +0,0 @@
functions-framework==1.4.3
markupsafe==2.0.1