파이썬/문법
파이썬 sys.stdin.readline() 개행문자 (newline, EOL) 처리
hanshow113
2021. 12. 27. 12:57
sys의 readline 메서드를 사용하다보면 개행문자가 끝에 포함되어 있는데 이 문자를 처리하기 위해 strip()을 사용하면 됨
str.strip()은 문자열 양쪽 끝의 특정 문자를 제거해주는 역할을 함
input = sys.stdin.readline()
a = list(input)
print(f"a-> {a}")
b = input.strip()
print(f"b-> {b}")
c = input.strip('\n')
print(f"c-> {c}")
>>>
>>>
XYZ
a-> ['X', 'Y', 'Z', '\n']
b-> XYZ
c-> XYZ
b의 경우처럼 인자가 생략되어 없는 경우 기본문자인 공백을 제거함
c처럼 명시적으로 인자를 표시해줄 수도 있음