Answers for "else do nothing 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

lambda if else nothing python

lambda x: x if (x<3) else None
Posted by: Guest on January-23-2021

Python Answers by Framework

Browse Popular Code Answers by Language