“Python, jeśli nie zerowy lub pusty” Kod odpowiedzi

Sprawdź, czy ciąg jest pustym Python

my_str = ""
if not my_str:
  print("empty")
else:
  print("not empty")
#output: empty
Doubtful Dingo

Python, jeśli nie zerowy lub pusty

#check is not null
if var is not None:
    print('Var is not null')
Itchy Ibex

Python, jeśli nie null

strtest = "xxxxxx"

if strtest is not None:
  print("strtest is not None")
dr4ft

Odpowiedzi podobne do “Python, jeśli nie zerowy lub pusty”

Pytania podobne do “Python, jeśli nie zerowy lub pusty”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu