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

2021-01-15 19:14

阅读:672

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

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

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

以上返回结果为:

This is a List

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

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

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


评论


亲,登录后才可以留言!