Compare commits

...

1 Commits
main ... v13

Author SHA1 Message Date
FunctionsAPI
84c9a62e71 Automatic push from FunctionsAPI 2025-06-11 11:49:52 +00:00
3 changed files with 26 additions and 2 deletions

View File

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

23
main.py Normal file
View File

@ -0,0 +1,23 @@
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}")

2
requirements.txt Normal file
View File

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