Update solution for 열_개씩_끊어_출력하기 w/ id 5277579
Time: 64ms MemUsage: 29160KB
This commit is contained in:
7
baekjoon/열_개씩_끊어_출력하기/solution_5277579.py
Normal file
7
baekjoon/열_개씩_끊어_출력하기/solution_5277579.py
Normal file
@@ -0,0 +1,7 @@
|
||||
str = input()
|
||||
new = ""
|
||||
while len(str)>10 :
|
||||
new = new + str[:10] + "\n"
|
||||
str = str[10:]
|
||||
new = new + str
|
||||
print(new)
|
||||
Reference in New Issue
Block a user