without haste but without rest

[python] 자잘한 not 사용법 본문

ProgrammingLanguage/Python

[python] 자잘한 not 사용법

JinungKim 2020. 4. 24. 19:23
odd = True
print(odd)

odd = not odd
print(odd)

 

데이터 전처리할때 써먹으면 좋다

Comments