Answers for "what to put in emty if python"

2

python do nothing

# To do nothing within a statement, use pass

good = True
if good:
  pass
else:
  print('This is not good')
Posted by: Guest on September-28-2020
0

how to have a blank in an if statement python

if :
  pass
else:
  print("")
Posted by: Guest on June-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language