#coding:utf-8from module6 import shitprint("6、第六章,函数与模块的使用\n函数结构:\ndef 函数名(参数名):\n\t语句1\n\t语句n\n\treturn 返回值\n注意:\n设置函数的时候,函数的参数是形式参数,调用函数的时候,函数的参数是实际参数\n")shit()
[python第六课]函数和模块的使用
原文:https://www.cnblogs.com/XiaoHongLactasoy/p/12610070.html