【拉勾3期】python 脚本编写实战(一)- 课程贴

ppt地址

学习资料

  • python官网:

https://docs.python.org/zh-cn/3/tutorial/index.html

  • 流畅的python
  • python cook book

课程内容

工欲善其事必先利其器

python

编码规范

Python风格规范 — Google 开源项目风格指南

pycharm

官网:

Download PyCharm: Python IDE for Professional Developers by JetBrains

教程贴:

Python和PyCharm环境安装配置 - #3,来自 _AD

pip源

清华大学:Simple Index
阿里云:Simple Index
豆瓣:Simple Index

github

  1. 注册
  2. 登录
  3. 创建公有仓库

git

下载安装

git官方网站:

https://git-scm.com/

windows打开gitbash的两种方式

git 账号配置
  1. 生成ssh-key:ssh-keygen -t rsa -C "your_email@youremail.com"
  2. 查看秘钥: cat 你自己的路径/.ssh/id_rsa.pub
  3. 配置ssh-key:找到id_rsa.pub ,复制到 github->SSH and GPG keys->Account Settings
  4. 验证配置结果:ssh -T git@github.com (非必须)
  5. 设置username和email
    • git config --global user.name "your name"
    • git config --global user.email "your_email@youremail.com"
  6. 查看
    • git config user.name
    • git config user.email
  7. 验证pycharm中git配置成功

  8. pycharm -git 基本操作

python练习

  • 快捷键: ctrl +d 复制当前行到下一行
  • 快捷键: ctrl+/ 复制当前行到下一行

课堂演示源码

课后作业

课后调查表单

https://github.com/BeiMingYouYuMiaomiao/hogwarts_xiaobei.git