Answers for "how to pass information to a function python"

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

Code answers related to "how to pass information to a function python"

Python Answers by Framework

Browse Popular Code Answers by Language