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

python判断变量类型是否为List列表

时间:2020-05-22 00:24:16      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:pre   type   变量   返回结果   类型   列表   this   instance   print   

li =["hello","python","list"]
print(type(li))

if isinstance(li,list):
    print("This is a List")

以上返回结果为:
<class ‘list‘>
This is a List

python判断变量类型是否为List列表

标签:pre   type   变量   返回结果   类型   列表   this   instance   print   

原文地址:https://www.cnblogs.com/gqv2009/p/12934237.html

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