5 lines
88 B
Python
5 lines
88 B
Python
s = ''
|
|
if len(s) == 0:
|
|
print("String is empty")
|
|
else:
|
|
print("String not empty")
|