码迷,mamicode.com
首页 > 其他好文 > 详细

函数的多类型传值

时间:2019-01-13 12:27:18      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:元组   def   组类型   fun   pytho   int   class   函数   字符   

如下:

#!/usr/bin/env python

def fun(x, y):
    print(x+y)

fun(2, 3)        # 把数值类型作为参数传入函数
 
fun(a, b)    # 把字符串类型作为参数传入函数

t = (2, 3)       # 把元组类型作为参数传入函数
fun(*t)

dic = {x:2, y:3}   # 把字典类型作为参数传入函数
fun(**dic)

 

 

 

 

 

    

函数的多类型传值

标签:元组   def   组类型   fun   pytho   int   class   函数   字符   

原文地址:https://www.cnblogs.com/pzk7788/p/10262192.html

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