Compare commits

...

1 Commits
main ... v9

Author SHA1 Message Date
FunctionsAPI
461a3b1884 Automatic push from FunctionsAPI 2025-06-10 15:05:49 +00:00
3 changed files with 18 additions and 2 deletions

View File

@ -1,2 +1 @@
# 7d392f5006854c05a619ad8a32c137a2
# python hello-world

15
main.py Normal file
View File

@ -0,0 +1,15 @@
def display_variables():
# 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)
# Call the function to display the variables
display_variables()

2
requirements.txt Normal file
View File

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