python do nothing after else code example
Example: python do nothing
# To do nothing within a statement, use pass
good = True
if good:
pass
else:
print('This is not good')
# To do nothing within a statement, use pass
good = True
if good:
pass
else:
print('This is not good')