码迷,mamicode.com
首页 > 编程语言 > 详细

python变量的数据类型

时间:2019-06-30 09:35:49      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:布尔   boolean   str   bool   语法   常用   输出   int   python   

变量在赋值时会自动判断数据的类型

python最常用的有四种数据类型

字符串 - str(string)

整数 - int(integer)

浮点数 - float

布尔型 - bool(boolean)

 

type函数用于得到变量的数据类型

语法: 变量 = type(变量名)

输出: str  |  int  |  float  |  bool

print(type(变量名)) #函数套用

python变量的数据类型

标签:布尔   boolean   str   bool   语法   常用   输出   int   python   

原文地址:https://www.cnblogs.com/enjie/p/11108424.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!