Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python do nothing

# To do nothing within a statement, use pass

good = True
if good:
  pass
else:
  print('This is not good')
 
PREVIOUS NEXT
Tagged: #python
ADD COMMENT
Topic
Name
6+5 =