함수 bool()

함수 bool

1 Python[ | ]

Python
Copy
print( bool(2) )
print( bool(1) )
print( bool(0) )
print( bool(-1) )
print( bool(-2) )
# True
# True
# False
# True
# True

2 같이 보기[ | ]

편집자 J Jmnote Jmnote bot