-
Python에서 between 대체하기Python 2021. 1. 27. 22:50
파이썬에서는 between이 없기 때문에 range로 대체해서 사용한다.
if a between 1 and 10: # 사용 불가능 print(a)
↓
if a in range(1, 4): print(a)
'Python' 카테고리의 다른 글
[error] AttributeError: partially initialized module 'statistics' has no attribute 'mean' (most likely due to a circular import) (0) 2021.01.29 Python의 효율적인 반복에 유용한 itertools 함수 (0) 2021.01.28 11. 컬렉션 관리 (0) 2021.01.22 리스트 중복 요소 제거 (0) 2021.01.21 리스트 안 빈 문자 제거하기 (0) 2021.01.21