摘要: type() 函数:如果你只有第一个参数则返回对象的类型 a = [1,2,3] b= {'k1':'v1','k2':'v2'} c = (1,2,3,4,5) d = 4 print(type(a)) #列表 print(type(b)) #字典 print(type(c)) #元组 print 阅读全文
posted @ 2019-12-20 19:37 小白龙白龙马 阅读(240) 评论(0) 推荐(0) 编辑