标签:first name 说明 通过 fun The nbsp 结果 语法
三种编程方式:
1、面向对象,以类为主--class
2、面向过程,以过程为主--def
3、函数式编程,以函数为主--def
函数的定义——函数是指将一组语句的集合通过一个函数名封装起来,需要执行的时候调用函数名即可。
使用函数的优点:
减少重复编写代码
使程序更易于扩展
便于统一维护与更改
函数的语法:
def 函数名():
函数执行语句
无参数函数调用
def func_test1():
"This is the first test function" #写一行注释说明很重要,不影响运行
print("Line in test function 1")
func_test1()
运行结果:
Line in test function 1
带一个参数的函数调用
def func_test2(name):
print("my name is :",name)
func_test2(‘Frank‘)
运行结果:
my name is : Frank
标签:first name 说明 通过 fun The nbsp 结果 语法
原文地址:https://www.cnblogs.com/wangfei1248/p/9763660.html