python 常用数据类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 常用数据类型相关的知识,希望对你有一定的参考价值。
目录
1、字符串
2、布尔类型
3、整数
4、浮点数
5、数字
6、列表
1.字符串
a、使用单引号(‘)或者双引号(")
单引号中的字符串与双引号中的字符串用法完全相同,例如:
str1=‘this is string1‘;
str2= "this is string2"
print str1,str2;
b、使用三引号(‘‘‘)
利用三引号,表示多行的字符串,可以在三引号中自由的使用单引号和双引号,例如:
str=‘‘‘this is string
this is string
this is string‘‘‘
print str;
2.布尔类型
True or False
>>> type(True)
<class ‘bool‘>
>>> type(False)
<class ‘bool‘>
利用布尔类型进行判断:
>>> 1 + 1 == 2
True
>>> 1 + 1 == 3
False
3.整数
以上是关于python 常用数据类型的主要内容,如果未能解决你的问题,请参考以下文章