Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9015bf4d42 |
20
main.py
Normal file
20
main.py
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
def calculate_sum(a, b):
|
||||||
|
return a + b
|
||||||
|
|
||||||
|
def main():
|
||||||
|
name = "Anna"
|
||||||
|
age = 30
|
||||||
|
height = 1.65
|
||||||
|
|
||||||
|
experience = 5
|
||||||
|
total_years = calculate_sum(age, experience)
|
||||||
|
|
||||||
|
print(f"Cześć, mam na imię {name}.")
|
||||||
|
print(f"Mam {age} lat i {experience} lat doświadczenia.")
|
||||||
|
print(f"Mój wzrost to {height} m.")
|
||||||
|
print(f"Razem to {total_years} lat (wiek + doświadczenie).")
|
||||||
|
|
||||||
|
hobbies = ["czytanie", "bieganie", "gotowanie"]
|
||||||
|
print("Moje hobby to:")
|
||||||
|
for hobby in hobbies:
|
||||||
|
print(f"- {hobby}")
|
||||||
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