Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3b2bbe6e50 |
17
main.py
Normal file
17
main.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
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
|
||||||
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
functions-framework==1.4.3
|
||||||
|
markupsafe==2.0.1
|
||||||
Loading…
Reference in New Issue
Block a user