Python3 必需参数 Python3 函数调用 Python3 关键字参数 Python3 必需参数 #!/usr/bin/python3 # Function definition is here def printme( str ): "This prints a passed string into this function" print (str) return # Now you can call printme function printme() Python3 函数调用 Python3 关键字参数