教育Pythonpython

1、Python概述

2019-04-25  本文已影响21人  代码充电宝

(1)Python概述

项目 类型 运行速度 代码量
C 编译为机器码 非常快 非常多
Java 编译为字节码
Python 解释执行

(2)下载安装

  1. 下载官网https://www.python.org/,msi直接安装(Python的2.x和3.x版本不兼容,注意版本)
  2. 配置Python环境变量path(python安装的根目录D:\ITSoft\Python)
  3. cmd命令行 输入python命令
C:\Users\wangc>python
Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:42:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> 100+200
300
>>> print 'hello world'
hello world
>>> exit()
C:\Users\wangc>
print 'hello world'
C:\Users\wangc>cd C:\Users\wangc\Documents\python
C:\Users\wangc\Documents\python>python hello.py
hello world
C:\Users\wangc\Documents\python>

(3)PythonCharm安装配置

(4)Python相关网站

上一篇 下一篇

猜你喜欢

热点阅读