diji_1

来源:互联网 发布:js循环语句 编辑:程序博客网 时间:2024/06/15 10:18
python 2 vs 3
 1。 默认支持中文
 2. 不兼容2.x
 3. 核心语法调整,更易学
 4. 新特性默认只在3.x上有
Python 2 or 3?
安装
 交互器模式
 
 开始--》cmd --> cd c:\  -->dir
 cd = change directory
 dir = 查看当前目录文件列表
 
 
 cd .. 返回上一层目录
 cd ../.. 返回上上一层目录
 cd ../../.. 返回上上上一层目录
 cd ../../../.. 返回上上上上一层目录
 
D:\>"d:\Program Files\Python35\python.exe" c:\hello.txt
Hello World!
 
 #c:\hello.txt   .txt 代表文件的扩展名(后缀名),用于区分文件类型
 .txt 记事本文本文件
 .doc word文件
 .xls excel文件
 .ppt PPT文件
 .exe 可执行文件
 .jpg .png  .jpeg  图片
 .gif 动态图片
 .pdf  PDF文件
 .mp4 .avi 视频
 .py   python文件
 .java java 文件
 .c .h  c源码
 .php php文件
 .js   javascript
环境变量
 
原创粉丝点击