标签:也会 自定义函数 结束 color 文档 restart res 用法 内容
1 #! /usr/bin/python3 2 #-*- conding:UTF8 -*- 3 #def函数格式 4 5 def 函数名(参数列表): 6 函数体 7 或者更直观的表示为: 8 def <name>(arg1,arg2,...argN): 9 <statements>
1 #! /usr/bin/python3 2 #-*- conding:UTF8 -*- 3 #def函数格式 4 5 def hello(): 6 print(‘hello,world‘) 7 hello()
1 D:\Pythonworkspace>python def_示例模板.py 2 hello,world
1 #! /usr/bin/python3 2 #-*- conding:UTF8 -*- 3 #def函数示例模板_1 4 5 6 7 def printmore(): 8 print(‘该函数可以输出多条语句,这是第一条;‘) 9 print(‘这是第二条;‘) 10 print(‘这是第三条。‘) 11 printmore() #调用函数
1 =============== RESTART: C:/Users/DL He/Desktop/def_示例模板_1.py =============== 2 该函数可以输出多条语句,这是第一条; 3 这是第二条; 4 这是第三条。
1 #! /usr/bin/python3 2 #-*- conding:UTF8 -*- 3 #def函数示例模板_2 4 5 def mixoperation(): 6 a=10 7 b=20 8 print(a) 9 print(b) 10 print(a+b) 11 print(‘a+b的和等于:‘,a+b) 12 mixoperation()
1 =============== RESTART: C:/Users/DL He/Desktop/def_示例模板_2.py =============== 2 10 3 20 4 30 5 a+b的和等于: 30
1 #! /usr/bin/python3 2 #-*- conding:UTF8 -*- 3 #def函数示例模板_3 4 5 def donothing(): 6 pass 7 donothing()
1 =============== RESTART: C:/Users/DL He/Desktop/def_示例模板_3.py =============== 2 >>>
标签:也会 自定义函数 结束 color 文档 restart res 用法 内容
原文地址:http://www.cnblogs.com/DLHe/p/7753877.html