数据类型

1、数字

 

python3中数字类型:int,float,complex、bool

a = 99    
print(type(a))    
# <class 'int'>

b = 1.2
print(type(b))
# <class 'float'>

c = 1+2j
print(type(c))
# <class 'complex'>

d = True
print(type(d))
# <class 'bool'>

 

 

1.1 数值运算

 

>>> 1+2	
3
>>> 2-1
1
>>> 1.5*3
4.5
>>> 11 / 2		# 除法
5.5
>>> 11 // 2		# 除法,取整
5
>>> 11 % 2		# 取余
1
>>> 2 ** 3
8

 

在混合计算时,Python会把整型转换成为浮点数。

 

 

2、字符串

 2.1 字符串定义

字符串定义可以是用单引号,双引号,且可以使用反斜杠转义

>>> strA = 'testa'	# 单引号为变量赋值
>>> strB = "testb"	# 双引号为变量赋值
>>> strC = "test\nc"	# \转义
>>> print(strA)
testa
>>> print(strB)
testb
>>> print(strC)
test
c

  

 

3、

 

posted on 2020-11-05 09:37  杂货铺已被占用  阅读(66)  评论(0编辑  收藏  举报

导航