Hi All,
Im new to Python and doing a few basic exercises around modules and calling same. Can someone explain what par is in relation to this example?
--------------
# Defining a module called support.py
def print_func( par ):
print "Hello : ", par
return
--------------
# Importing support.py module
import support
support.print_func("Zara")
Thanks
Tubs