passer à Python
# pass in python is basically a placeholder thing to put in empty functions/classes
# example
def whatever():
pass
class whatever():
pass
Random boi