Files
inf-kswo/RandomOtherStuff/Textverbinder.py
Janis Hutz ede0ee318b Format
There really is no hope of making this code even half-way decent without
spending the time to rewrite them all properly. Don't want to do any of
that
2025-11-03 17:08:35 +01:00

15 lines
310 B
Python
Executable File

# Yes, that is called concat, but sure
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