without haste but without rest
[python] 자잘한 not 사용법 본문
odd = True
print(odd)
odd = not odd
print(odd)
데이터 전처리할때 써먹으면 좋다
'ProgrammingLanguage > Python' 카테고리의 다른 글
[python] Counter 함수 (0) | 2020.05.18 |
---|---|
[python] 텍스트 데이터 전처리 (0) | 2020.04.25 |
[python] random 라이브러리 (0) | 2020.04.13 |
[python] sort 메소드, sorted 함수에서 lambda 활용하기 ★ (0) | 2020.04.03 |
[python] 정말 간단한 문자열 뒤집기 (0) | 2020.03.27 |
Comments