Python 开发者学习路线汇总

开发者学习路线汇总https://roadmap.sh/ learn-Git https://learngitbranching.js.org/?locale=zh_CN python入门进阶 从零开始学Python(2023版)https://www.zhihu.com/column/c_1216656665569013760 Python - 100天从新手到大师 https://github.com/jackfrued/Python-100-Days 菜鸟教程https://www.runoob.com/ hello算法学习网站 https://www.hello-algo.com/ 一个python 算法github仓库 https://github.com/TheAlgorithms/Python 【蚂蚁学Python】并发编程https://www.bilibili.com/video/BV1bK411A7tV 【设计模式design-patterns教程】https://refactoringguru.cn/design-patterns 【设计模式网课】https://www.bilibili.com/video/BV1RT411D7by 数据分析练习类 pandas-100https://github.com/VXenomac/100-pandas-puzzles-cn numpy-100 https://github.com/rougier/numpy-100 一些有趣的项目 《自制深度学习框架》 密码:kdfh https://www.yuque.com/kingyen/kgcev7? flasky项目学习flask https://github.com/miguelgrinberg/flasky 动手学深度学习第二版-李沐 https://github.com/d2l-ai/d2l-zh 《Python3网络教程开发实战》(群文件)配套爬虫案例https://scrape.center 一个欢迎被爬虫的新手练习小站 http://books.toscrape.com/

July 20, 2024

同一个包中使用别的文件的全局变量 package main var GlobalECRClassID int64 var GlobalECNClassID int64 func init() { GlobalECRClassID = 6001 GlobalECNClassID = 6002 } 必须有 func init() 会自动执行