一、Hello World
1、编程环境搭建
安装python.3.7.3
链接:https://pan.baidu.com/s/1EgFOCFzqFkWkNShzCgeGIw
提取码:bqvn
安装pycharm(需注册码)
链接:https://pan.baidu.com/s/1p4EwarVLXVR12D1GeW3zDg
提取码:6uk5
pycharm注册码
链接:https://pan.baidu.com/s/1mT3Jc3GDQZca3Qvek0Pu-w
提取码:9018
2、安装python
- 百度python
- python官网:https://www.python.org/
- download选windows
- 下载python3.7.3
- custom自定义安装
- 选择“添加到环境变量”
- 选择安装路径
- 验证
- 验证python( quit()或exit() 退出)
- 验证pip
3、安装pycharm
安装pycharm:
- 下载pycharm
- 注册码
- 通用设置
- 工程路径
- 菜单字体apparence - font
- 字体大小editor - font
- contrl+滚轮缩放字体
- 默认编码editor - file encoding
2、编写第一个程序
2.1 命名规范
命名规范:<u>https://blog.csdn.net/warm77/article/details/78353632</u>
Python之父Guido推荐的规范
Type | Public | Internal |
---|---|---|
模块 Modules | lower_with_under | _lower_with_under |
包 Packages | lower_with_under | |
类 Classes | CapWords | _CapWords |
异常 Exceptions | CapWords | |
函数 Functions | lower_with_under() | _lower_with_under() |
常量 Global/Class Constants | CAPS_WITH_UNDER | _CAPS_WITH_UNDER |
类变量 Global/Class Variables | lower_with_under | _lower_with_under |
实例变量 Instance Variables | lower_with_under | _lower_with_under (protected) or __lower_with_under (private) |
方法名 Method Names | lower_with_under() | _lower_with_under() (protected) or __lower_with_under() (private) |
参数 Function/Method Parameters | lower_with_under | |
Local Variables | lower_with_under |
总结:
除了类,都用“”做多个单词的连接
除了类和常量,都用小写
私有的加“”作前缀
2.2 第一个python程序
新建工程:一个程序,命名hello_world
新建包:分类管理python代码文件basic
新建模块:python文件(.py结尾)
用来从逻辑上组织Python代码(变量、函数、类,逻辑:实现一个功能),本质就是.py结尾的Python文件(文件名:test.py,对应的模块名:test)
编写HelloWorld程序(面向过程)
print("你好,师姐 !")
3、执行python
两种方式:
1、右键:run
2、命令行:python 模块名
python hello_word.py
[图片上传失败...(image-754083-1564890623090)]