Answers for "python passs"

1

pass python

# Pass it's used when need have something to fill something an not implemented
# function...
def notImplementedFunction():
  pass
Posted by: Guest on December-02-2020
1

pass in python

# pass in python is basically a placeholder thing to put in empty functions/classes
# example

def whatever():
    pass

class whatever():
    pass
Posted by: Guest on December-11-2020

Python Answers by Framework

Browse Popular Code Answers by Language