码迷,mamicode.com
首页 > 编程语言 > 详细

[Python]**otherInfo, *other

时间:2020-06-05 20:55:34      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:pytho   air   print   color   other   height   nbsp   code   info   

 

def person(age, **otherInfo):
    print(age)
    print(type(otherInfo))
    print(otherInfo)

person(age=15, sex=male, height=175, weight=56.7, hair=long)

 

运行结果:

15
<class dict>
{sex: male, height: 175, weight: 56.7, hair: long}

 

 

 

def person(age, *other, height):
    print(age)
    print(type(other))
    print(other)

person(15, male, 56.7, long, height=175)

 

[Python]**otherInfo, *other

标签:pytho   air   print   color   other   height   nbsp   code   info   

原文地址:https://www.cnblogs.com/profesor/p/13052136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!