标签: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
标签:pre type 变量 返回结果 类型 列表 this instance print
原文地址:https://www.cnblogs.com/gqv2009/p/12934237.html