Please enable JavaScript.
Coggle requires JavaScript to display documents.
菜鸟到高手 (1.初识python (面向对象的解释型编程语言, 源代码和解释器都遵循GPL协议, 强制用空白符作为语句缩进, 胶水语言,…
菜鸟到高手
1.初识python
面向对象的解释型编程语言
源代码和解释器都遵循GPL协议
强制用空白符作为语句缩进
胶水语言
可以快速用python生成程序的原型
python REPL也可以称为python控制台
网络爬虫
scrapy
https://docs.scrapy.org/en/latest/intro/tutorial.html
beautifullsoup
https://www.crummy.com/software/BeautifulSoup/bs4/doc/
https://docs.python-guide.org/scenarios/scrape/#:~:text=This%20is%20where%20web%20scraping,the%20structure%20of%20the%20data
如何学好python
经常总结
多写代码
python语言基础
模块
数字
数字运算优先级
圆括号(())
2.幂运算符 **
乘(*) 除(/) 整除(//) 取余(%)
加,减
二进制 0b开头,八进制0o,十六进制0x
int 转换为十进制
bin 转换为二进制
oct 转换为八进制
hex 转化为十六进制
format格式化数字