求传入N个参数的最大最小值
Posted dushi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求传入N个参数的最大最小值相关的知识,希望对你有一定的参考价值。
def fun2(*args):
m=args[0]
m1=args[0]
for l in args:
if l>m:
m=l
elif l<m1:
m1=l
return {"最大值":m,"最小值":m1}
print(fun2(45,67,8,9,3,4,5,67,897,4543))
打印
{‘最大值‘: 4543, ‘最小值‘: 3}
以上是关于求传入N个参数的最大最小值的主要内容,如果未能解决你的问题,请参考以下文章