pythonday3函数
程序员文章站
2022-03-16 08:57:01
...
1、无参函数
# coding=utf-8
#1无参函数
def study():
print "学习"
study() #调用函数study
#定义有参函数
def study1(x,y):
print "学习课程为多少天",x,"时间为",y
stu = study1(1,10) #调用带参函数
print stu
上一篇: list与dict互转
下一篇: php常用的数组函数和字符串函数
推荐阅读