Blogger Information
Blog 110
fans 0
comment 0
visits 112322
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Python零基础入门-基础语法-基础数据类型
Coco
Original
324 people have browsed it

  字符串

  单行字符串用两个双引号包住,多行字符串用两个 三连双引号包住

  name="编程小猪"

  school="厦门大学"

  poem="""

  众鸟高飞尽,

  孤云独去闲。

  相看两不厌,

  只有敬亭山。

  """整型

  也就是整数,可以为正数,0,负数。

  age=18

  money=0

  number=-1980浮点数

  也就是手游买号数值后面带有小数点的。

  money=999.99

  test=-1.1复数

  复数由一个实数和一个虚数组合而成,表示为:x+yj,其中 x 是实数部分,y 是虚数部分。

  1、虚数不能单独存在,它总是和一个实数部分一起构成一个复数

  2、实数部分和虚数部分都是浮点数

  3、虚数部分必须有后缀j或J

  number=55 - 66j

  print(number.real) # 实数部分 55.0

  print(numberag) # 虚数部分 -66.0布尔型

  布尔型只有两种值:True,False。

  success=True

  failure=False

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post