The new materials

This commit is contained in:
Manolo Hernandez Lütten
2026-06-24 09:15:41 +02:00
parent c0fc1681e5
commit b4cd108d93
4 changed files with 87 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# def leitet sich von define ab
# in den Klammern sind die Parameter (hier a, b)
def addition(a, b):
result = a + b
return result
summe = addition(10, 20)
print(summe)
summe1 = addition(summe, 0.25)
print(summe1)