Compare commits
No commits in common. "v4" and "main" have entirely different histories.
20
main.py
20
main.py
@ -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}")
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
functions-framework==1.4.3
|
|
||||||
markupsafe==2.0.1
|
|
||||||
Loading…
Reference in New Issue
Block a user