6 lines
91 B
Python
6 lines
91 B
Python
|
|
s = ''
|
||
|
|
if not s:
|
||
|
|
print('String s is empty.')
|
||
|
|
if s:
|
||
|
|
print('String s is not empty.')
|