橘子味的心
标题: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()

目录

分类