laika222
7/13/2019 - 3:45 PM

Pass

# pass is the 'no-op' statement in Python. It can be used in blocks where no action is to be taken ('do nothing'), or as a placehold for code not yet implemented

if x < 0:
  print('negative')
elif x == 0:
  #TO-DO: put something clever here
  pass
else:
  print('positive')