Answers for "if is not empty string python"

18

check if string is empty python

my_str = ""
if not my_str:
  print("empty")
else:
  print("not empty")
#output: empty
Posted by: Guest on May-09-2020
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

Code answers related to "if is not empty string python"

Python Answers by Framework

Browse Popular Code Answers by Language