Python ne fait rien
# To do nothing within a statement, use pass
good = True
if good:
pass
else:
print('This is not good')
Exypnos
# To do nothing within a statement, use pass
good = True
if good:
pass
else:
print('This is not good')
def foo():
pass
# display nothing