python 入门从hello world开始~
环境安装:2.7.x 或3.x两个主流版本
打印hello world的几种方式:
一、命令行
直接在命令行中键入python,就会进入
<pre name="code" class="python">>>> print 'hello world'
二、python 文件
新建xx.py文件,并编辑如下
print "hello world!"
python xx.py
三、脚本文件
新建创建hell.py并编辑
#! /bin/usr/env python
print "hello world"
chmod u+x hello.py
./hello.py
python学习从hello world开始~