print(1,2,3,4,5, sep =';')

print(1.2.3.4.5; end =',')

注释

#单行注释

''' 多行注释

三个双引号“”“”“”

运算符

 取整 5//3    等于1

取余数  5%3  等于2 

 乘方   **

 

  不等 !=

   and

  not 

  or

 1  = true

0 = false

关系运算符

is    a=5 b=5  a is b     返回true

is not

in

not in

 

数据类型

内置常量

None   空 Nontype

 

True   False  

int  int(5) int(5.9)int(‘6’) 字符串不能未小数

 

float  float(‘5.66’)  5.66     

round(5.66,1 )  5.7   1 代表保留位数

字符串类型

‘’ 或者“”

“12,‘1’”             ‘122“000’

str(123)

 转义字符

\

换行符 \n

\\   \

\r  回车符

原始字符    r'1213123' 路径和目录  

posted on 2022-03-06 20:39  Lionever  阅读(31)  评论(0编辑  收藏  举报