Day01-Python基础2-Python安装和Hello World程序
本节介绍:
- Python介绍
- Python发展史
- Python 2 or Python 3?
- Python的安装
- Hello World 程序
- 变量
- 用户输入
- 模块知识
- .pyc是什么鬼?
- 数据类型知识
- 数据运算
- 表达式 if... else ... 语句
- 表达式 for 循环
- break 和 continue
- 表达式 while 循环
- 作业需求
四、Python安装
Windows:
1、下载安装包
https://www.python.org/downloads/
2、安装
默认安装路径:C:\python27
3、配置环境变量
【右键计算机】--》【属性】--》【高级系统设置】--》【高级】--》【环境变量】--》【在第二个内容框中找到 变量名为Path 的一行,双击】 --> 【Python安装目录追加到变值值中,用 ; 分割】
如:原来的值;C:\python27,切记前面有分号
Linux and MAC:
无需安装,原装Python环境
ps:如果自带2.6,请更新至2.7
五、Hello World程序
在linux 下创建一个文件叫hello.py,并输入
print("Hello World!")
然后执行命令:python hello.py ,输出
localhost:~ morgan363$ vim hello.py localhost:~ morgan363$ python hello.py Hello World!
指定解释器
上一步中执行 python hello.py 时,明确的指出 hello.py 脚本由 python 解释器来执行。
如果想要类似于执行shell脚本一样执行python脚本,例: ./hello.py ,那么就需要在 hello.py 文件的头部指定解释器,如下:
#!/usr/bin/env python print "hello,world"
如此一来,执行: ./hello.py 即可。
ps:执行前需给予 hello.py 执行权限,chmod 755 hello.py
在交互器中执行
除了把程序写在文件里,还可以直接调用python自带的交互器运行代码,
localhost:~ morgan363$ python
Python 2.7.10 (default, Oct 23 2015, 18:05:06)
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> print("Hello World!")
Hello World!
对比下其它语言的hello world
C++:
#include <iostream> int main(void) { std::cout<<"Hello world"; }
浙公网安备 33010602011771号