摘要: Python 第二章:数据类型 python内置类型中不可变类型有str, int, float, boolean, tuple;可变类型有list, dict, set。 相应的方法 查看数据类型:type(变量名) a = 1 print(type(a)) >> <class 'int'> 地板 阅读全文
posted @ 2021-11-22 20:44 Mercurows 阅读(238) 评论(0) 推荐(0)