python查看变量类型

2023-01-31 05:01:58 变量 查看 类型

使用type函数

示例如下

>>> aList=[1,2,3,4,5]
>>> type(aList)
<class 'list'>



相关文章