7 lines
132 B
Python
7 lines
132 B
Python
>>> if x: # Pythonic
|
|
... print("x is not empty.")
|
|
... else:
|
|
... print("x is empty.")
|
|
...
|
|
x is not empty.
|