首页 >

python38变量定义方式 – python – 前端,python 正则 获取

python面试宝典,linux mysql-python,python log handler,python下载图片循环,python可以写代码吗,python extention,python momentum,python回归检验,python程序题库,python pipe install,python 正则 获取python38变量定义方式 - python - 前端,python 正则 获取

#定义变量的几种方式

a,b,c,d = 4,4,4,4

print(d,c,b,a)

x=y=z=4

print(x,y,z)

#整型:int

a = 30

print(type(a))

print(bin(a))

print(oct(a))

print(hex(a))

#浮点型:float

b = 3.3

print(type(b))

#科学计数

c = 3.3e5#3.3*10^5

print(c,type©)

#布尔型:bool

#取值范围:True和False

d = True

e = False

print(type(d),type(e))

#复数型:complex

#对应数学里面的复数,格式:i^2=-1

x = 3.8 + 4.5j

print(type(x))

不同的数字类型之间可以互相转换:

#转整型用int():

#转浮点型float():

#转布尔型bool():

转复数complex():

a = 3.8 # 不是四舍五入,只取整数部分

print(int(a))

b = 5

print(float(b))

c = 4 # 0转换为False,非0转换为True

d = 0

print(bool©,bool(d))

e = 3.3

f = 7.7

print(complex(f,e))


python38变量定义方式 - python - 前端,python 正则 获取
  • 一个手指控制的游戏 - python - 前端,python数组增加二维数组
  • 一个手指控制的游戏 - python - 前端,python数组增加二维数组 | 一个手指控制的游戏 - python - 前端,python数组增加二维数组 ...

    python38变量定义方式 - python - 前端,python 正则 获取
  • 现代计算机是如何计算圆周率的 - python - 前端,python web 不用框架
  • 现代计算机是如何计算圆周率的 - python - 前端,python web 不用框架 | 现代计算机是如何计算圆周率的 - python - 前端,python web 不用框架 ...

    python38变量定义方式 - python - 前端,python 正则 获取
  • python怎么破解空间密码 - python - 前端,python hashlib sha1
  • python怎么破解空间密码 - python - 前端,python hashlib sha1 | python怎么破解空间密码 - python - 前端,python hashlib sha1 ...