PHP前端开发

python基本数据类型有哪些

百变鹏仔 2小时前 #Python
文章标签 数据类型

python基本数据类型有哪些?

python基本数据类型有:

● int 整型

● bool 布尔

● strintg 字符串

立即学习“Python免费学习笔记(深入)”;

● list 列表

● tuple 元组

● dict 字典

数据类型的可变和不可变

● 不可变类型:int, string,tuple

● 可变类型:list,dict