Upload code

This commit is contained in:
2025-01-20 19:40:14 +01:00
parent 71625e3e41
commit 07809d7d77
66 changed files with 8917 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
x = input("Wert x: ")
y = input("Wert y: ")
z = input("Wert z: ")
whole = x + " " + y + " " + z
remaining = len(whole)
start = 0
ending = 6
while remaining > 1:
print(whole[start:ending], end=" ")
start += 6
ending += 6
remaining -= 6