Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9e2904b9b5 |
15
main.py
Normal file
15
main.py
Normal file
@ -0,0 +1,15 @@
|
||||
def main():
|
||||
# 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)
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
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