Answers for "write a pass with * in python"

0

pass in python

def myEmptyFunc():
   # do nothing
   pass
myEmptyFunc()    # nothing happens
## Without the pass keyword
# File "<stdin>", line 3
# IndentationError: expected an indented block
Posted by: Guest on August-31-2021

Python Answers by Framework

Browse Popular Code Answers by Language