-
[Python] 문자열 100개씩 잘라서 출력하기Python/Python Programming 2018. 5. 14. 17:26
로그나 문자열이 너무 길면 일정길이로 짤라서 라인으로 출력할 필요가 있다.
s = 'Python is Beautiful' * 10 start = 0 end = 100 while True: print(s[start:end],end='\n') if len(s[end:]) < 101: print(s[end:]) break else: start = end + 1 end += 101 ------------------------------------------------------------- Python is BeautifulPython is BeautifulPython is BeautifulPython is BeautifulPython is BeautifulPytho n is BeautifulPython is BeautifulPython is BeautifulPython is BeautifulPython is Beautiful
'Python > Python Programming' 카테고리의 다른 글
[Python] Gmail 보내기 (0) 2018.05.18 [Python] 단축평가(short-circuit evalution) (0) 2018.05.15 [Python] ==(같다) 와 is (같다) 차이 (0) 2018.05.15 [Python] PEP - 스타일코드 공백(Whitespace) (0) 2018.05.14 [Python] 반복가능 (iterable)한 객체 오른쪽(right) 순회 (0) 2018.05.13 [Python] 리스트에서 숫자요소의 인덱스 위치 구하기 (0) 2018.05.13 [Python] 정규식 전방탐색과 후방탐색을 이용한 문자열 분할 (0) 2018.05.13 [Python] 정렬과 공백을 이용하여 보기좋게 출력하기 (0) 2018.05.12