From abe2251507afba92d7c8089de61b38b2b8ac1735 Mon Sep 17 00:00:00 2001 From: Myeongseon Choi Date: Thu, 29 Aug 2024 16:24:19 +0900 Subject: [PATCH] =?UTF-8?q?Update=20solution=20for=20=EC=97=B4=5F=EA=B0=9C?= =?UTF-8?q?=EC=94=A9=5F=EB=81=8A=EC=96=B4=5F=EC=B6=9C=EB=A0=A5=ED=95=98?= =?UTF-8?q?=EA=B8=B0=20w/=20id=205277579=20Time:=2064ms=20MemUsage:=202916?= =?UTF-8?q?0KB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- baekjoon/열_개씩_끊어_출력하기/solution_5277579.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 baekjoon/열_개씩_끊어_출력하기/solution_5277579.py diff --git a/baekjoon/열_개씩_끊어_출력하기/solution_5277579.py b/baekjoon/열_개씩_끊어_출력하기/solution_5277579.py new file mode 100644 index 0000000..1195851 --- /dev/null +++ b/baekjoon/열_개씩_끊어_출력하기/solution_5277579.py @@ -0,0 +1,7 @@ +str = input() +new = "" +while len(str)>10 : + new = new + str[:10] + "\n" + str = str[10:] +new = new + str +print(new) \ No newline at end of file