7 lines
141 B
Python
7 lines
141 B
Python
>>> if len(x) != 0: # Not quite Pythonic
|
|
... print("x is not empty.")
|
|
... else:
|
|
... print("x is empty.")
|
|
...
|
|
x is not empty
|