Java知识分享网 - 轻松学习从此开始!    

Java知识分享网

Java1234官方群25:java1234官方群17
Java1234官方群25:838462530
        
SpringBoot+SpringSecurity+Vue+ElementPlus权限系统实战课程 震撼发布        

最新Java全栈就业实战课程(免费)

springcloud分布式电商秒杀实战课程

IDEA永久激活

66套java实战课程无套路领取

锋哥开始收Java学员啦!

Python学习路线图

锋哥开始收Java学员啦!
当前位置: 主页 > Java文档 > Python技术 >

python知识点梳理(都是精华) PDF 下载


分享到:
时间:2024-03-13 11:33来源:http://www.java1234.com 作者:转载  侵权举报
python知识点梳理(都是精华)
失效链接处理
python知识点梳理(都是精华) PDF 下载

 
 
相关截图:
 



主要内容:
 
一、python 规范
1.命名规则
(1)必须以下划线或字母开头
(2)前后单下划线为系统变量
(3)双下划线开头为类的私有变量
(4)关键字不能用作变量名
2.注释
• 单行注释以 # 开头
• 多行注释可用多个 # 或者用 三引号(文档注释)
3.多行语句
• 行尾使用反斜线(\) 来续行
4.同一行写多条语句
• 语句间用分号(; ) 分隔
 
二、输入输出
1.输出 print()
• print 默认在末尾换行
a = 1
b = 2
c =3 # 直接输出多个变量 print( a , b , c )
# 输出: 1 2 3
# 使用 end 参数用指定的字符替换末尾的换行符 print( a , end =' @' )
# 输出: 1@
# 使用 formatprint(' a={} ' . format( a ) ) # 输出:
a=1print(' a={0} , b={1} , c{2} ' . format( a , b , c ) ) # 输出: a=1
b=2, c3
2.输入 input()
• input 输入的始终是字符串, 需要转换为其他数据类型使用
 
三、python 数据类型
1.六个标准数据类型
(1)Number(数字)
(2)String(字符串)
(3)List(列表)
(4)Tuple(元组)
(5)Sets(集合)
(6)Dictionary(字典)
2.Number
• 包括: int(整型) 、 float(浮点型) 、 bool(布尔型) 、 complex
(复数) 、 long(长整型)
• 清楚哪些值转换为布尔类型后值是 False
print(bool([]) )
# 输出: Falseprint(bool(' ' ) )
# 输出: Falseprint(bool({} ) )
# 输出: Falseprint(bool(() ) )
# 输出: False# 注意下面两个的区别
print(bool(0) )
# 输出: Falseprint(bool(' 0' ) )
# 输出: True
• 浮点数的内置函数运算会有误差, 也就是小数的精度问题
3.String
字符串属于序列, 除此之外还有:元组、列表(集合和字典不是序列类型)
单引号和双引号可以互换, 也可以互嵌
三引号表示多行字符串(也可以作为文档注释
另外: 三引号内可以直接使用回车、 制表符, 可以不使用转移字符
来表示
字符串常用操作:
(1)连接和重复
print(‘hello’ *3, ’ wor’ +’ ld’ )
# 输出: hellohellohello world
字符串的切片(左闭右开)
word = ' hello world' print( word [0: 5])
# 输出: helloprint( word [: 5])
# 输出: helloprint( word [1: ])
# 输出: ello worldprint( word [: ])
# 输出: helloworldprint( word [0: 5: 2])
# 输出: hloprint( word [2: -2])
# 输出: lloworprint( word [-2: 2])
# 输出空串
(2)转义字符
• 要注意这种复杂的转义字符一起输出
在字符串内的“\r”、 ”\t”、 ”\n”等字符, 会转换为空白字符(回车符、
水平制表符、换行符……)
printf(' hello\tworld' ) # 输出: hello world
(3)Raw 字符串(字符串内不转义)
字符串前缀为’R’或‘r’
print(r‘hello\tworld’ ) # 输出: hello\tworld
 
 

 
 
------分隔线----------------------------

锋哥公众号


锋哥微信


关注公众号
【Java资料站】
回复 666
获取 
66套java
从菜鸡到大神
项目实战课程

锋哥推荐