“Python sinon nul” Réponses codées

Python pas nul

test = "hello world"

if test is not None:
  print("test is not None")
  
test2 = None

if test2 is None:
  print("test2 is None")
DenverCoder1

Python si ce n'est pas nul ou vide

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

Python sinon nul

strtest = "xxxxxx"

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

Réponses similaires à “Python sinon nul”

Questions similaires à “Python sinon nul”

Plus de réponses similaires à “Python sinon nul” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code