python
Sweetylv
这个作者很懒,什么都没留下…
展开
-
python遍历所有的参数
def list(*list): for i in list: print(i)list('Jack','Mike')list('dog','cat','Ann')执行结果:JackMikedogcatAnn注意:这里是python遍历了所有的参数原创 2021-07-14 18:04:48 · 908 阅读 · 0 评论 -
python多个不同长度的函数使用案例
def list(*list): return listperson1 = list('Jack','Mike')person2 = list('dog','cat','Ann')print(person1)print(person2)执行结果:('Jack', 'Mike')('dog', 'cat', 'Ann')注意:这里使用星号 * 加上参数名(例如:*list),就可以接收不同长度的参数,返回值为参数名(例如:return list)。...原创 2021-07-14 17:41:55 · 125 阅读 · 0 评论 -
python 函数的使用
def list(person1,person2,person3): print("one is:"+person1) print("one is:"+person2) print("one is:"+person3+'\n')list('Jack','Mike','John')list('dog','cat','tiger')运行结果:one is:Jackone is:Mikeone is:Johnone is:dogone is:catone is:.原创 2021-07-14 17:32:37 · 101 阅读 · 0 评论 -
python定义函数和调用
number = input("请输入数字:")def display(x): str = '你输入的是:'+ x return strres = display(number)print(res)定义函数的语法:def 函数名(参数): 函数体 return 语句例如:def fun(x): y = 3* 9 + x return y注意:函数不一定要有参数,但是函数一定要有名字。nu...原创 2021-07-14 17:13:10 · 139 阅读 · 0 评论 -
python基础篇:求平均数
num = [100, 500, 90, 70, 800, 800, 9000, 200, 15000, 16000, 5000] sum = 0# 遍历列表 num 进行求和for s in num: sum = sum + s# 求平均数average = sum / len(num)# 平均数print('平均数:',round(average,2))原创 2021-07-11 14:50:10 · 1251 阅读 · 0 评论