Merge pull request #499 from theolucky889/patch-4

Update 11_functions.md
This commit is contained in:
Asabeneh 2026-01-11 00:25:40 +02:00 committed by GitHub
commit 8382cc9c69
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -252,7 +252,7 @@ print(add_two_numbers(2, 3))
def calculate_age (current_year, birth_year):
age = current_year - birth_year
return age
return age
print('Age: ', calculate_age(2019, 1819))
```