본문 바로가기
Python

[python] check String if null or empty

by bryan.oh 2020. 2. 12.
반응형

None (null) 이거나 비어있을 때 확인하는 방법

if not string_variable :
	print('비어있음. null. empty')


if string_variable :
	print('비어있지 않음. not null. not empty')

 

역시 파이선. 쓰기 편하게 해놨죠.

 

C# 같은 경우에는 if ( String.isNullOrEmpty(string_variable) ) 이렇게 써야..

 

728x90
반응형

댓글