inf-kswo/RandomOtherStuff/Textverbinder.py
2025-01-20 19:41:45 +01:00

15 lines
280 B
Python
Executable File

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