python代码最忌讳重复代码。
函数(subrouting procedures):
将一组语句的组合集合通过一个名字(函数名)封装起来,执行函数,只需调用函数名。
函数作用:
1. 减少重复代码
2.方便修改,更易扩展
3.保持代码一致性
函数的创建:
def 函数名(参数列表):
print(‘ok‘)
注:函数名必须以下划线或字母开头。可以是任意字母,数字或下划线的集合
函数名区分大小写
函数名不能是保留字,比如 print
调用:
f() 通过函数名调用
def add(x,y):
print(x+y)
add(3,4)
x,y都是形参,3和4都是实参,按照顺序对应
import time
time_format=‘%Y-%m-%d %X‘
time_current=time.strftime(time_format) 输出当前时间
原文地址:https://www.cnblogs.com/zd37/p/11562101.html
时间: 2024-10-12 21:18:01