Answers for "if condition not matched return empty python"

0

python if not null or empty

#check is not null
if var is not None:
    print('Var is not null')
Posted by: Guest on June-18-2021
0

check if value is empty python

a_variable = {}

is_a_empty = bool(a_variable)

print(is_a_empty)
# >>> False


b_variable = [1, 2, 3]

is_b_empty = bool(b_variable)

print(is_b_empty)
# >>> True
Posted by: Guest on June-09-2021

Code answers related to "if condition not matched return empty python"

Python Answers by Framework

Browse Popular Code Answers by Language