Compare commits

..

No commits in common. "v5" and "main" have entirely different histories.
v5 ... main

3 changed files with 2 additions and 23 deletions

View File

@ -1 +1,2 @@
# python hello-world
# 9fbbdeb5d0c04ea783291e900aaa7f8a

20
main.py
View File

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

View File

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