一、Python:优势:
1.全球四大主流的编程语言: java/ c/ c++/ Python
2.应用广泛 :后端开发、 web开发、 网站开发 、游戏开发 、科学计算 、云计算 、网络爬虫 、图形图像处理 、大数据分析
3.各方面比较出彩,发开效率高 、代码简洁优美 、可移植性 、可嵌入 、可扩展 、跨平台 、三方库丰富、 面向对象
4.简单易学 ,入门容易
二、Python:环境搭建:
注:Python2.x 与 Python3.x 不兼容3
1.官网下载相关文件https://www.python.org
1、1 for windows:------ Download———windows:
Latest Python 2 Release - Python 2.7.13——— 根据系统位数下载对应的安装包:如对于64是Windows x86-64 MSI installer
Latest Python 3 Release - Python 3.6.1———Windows x86-64 executable installer
基于开发以3为主,下载过后,先安装3.x版本
测试:CMD命令行操作:
Python ——— 查看版本并进入Python环境
Print“======” ——— 打印输出
exit() ———— 退出环境
path ——— 查看环境安装目录
1、1、2配置window 的环境变量:计算机——属性—— 高级性设置 —— 环境变量 -----查看path配置
注:两个版本安装后,Python语令会调用2.x版本(路径中文件排序顺序导致)
解决:主动选择启动版本:
A.cd 到Python3.x环境目录中
B. dir 查看目录下所有文件
C.Python调用(这里操作很麻烦,推荐使用Python IDE编辑工具)
1、2 for Mac :------ Download———Mac OS X:
Latest Python 3 Release - Python 3.6.1————Mac OS X 64-bit/32-bit installer
Latest Python 2 Release - Python 2.7.13————Mac OS X 64-bit/32-bit installer
1、3 Python IDE编辑工具使用:Geany:http://www.geany.org/
注:for windows 要更改Geany工具中生成命令下Python的路径,使其默认使用3.x版本
for mac :Builde ——set builds commands —
compile:将python -m py_compile "%f” 更改为python3 -m py_compile "%f”
execute:将python"%f"更改为python3 "%f"