Begynder done. /JL

This commit is contained in:
Jan Lerking
2025-03-17 13:05:30 +01:00
parent 250e562514
commit be2ae1cdc9
4 changed files with 22 additions and 0 deletions

6
begynder/sum.py Normal file
View File

@@ -0,0 +1,6 @@
def sum(tal1, tal2):
return str(f"Resultat {tal1} + {tal2}: {tal1 + tal2}")
resultat = sum(5, 3)
print(resultat)