开始使用Python编程
Python - 開始使用Python編程
Python is a programming language that lets you work more quickly and integrate your systems more effectively. You can learn to use Python and see almost immediate gains in productivity and lower maintenance costs.
在我使用Ubuntu做為我的操作系統(tǒng)以來,根據(jù)我的體會(huì)上面說的沒錯(cuò)。功能強(qiáng)大,簡(jiǎn)單靈活的腳本語言。即使你使用windows搭建Python的運(yùn)行環(huán)境也很簡(jiǎn)單。
Python官方網(wǎng)站:?http://www.python.org/
?
我使用Ubuntu 12.04 LTS,Python包是默認(rèn)安裝的。如果你使用Windows,要去官網(wǎng)上下載Windows的Installer,之后將包含python.exe的安裝目錄加入系統(tǒng)環(huán)境變量Path中,你就可以使用python命令了,腳本的執(zhí)行要依賴這個(gè)python.exe。
?
如何運(yùn)行Python腳本?
?
Python腳本是以.py結(jié)尾的文件,在Linux系統(tǒng)下有兩種執(zhí)行方式
假設(shè)你有腳本hello.py,
./hello.py或者
python hello.py如何查看我的python版本?
python --version如何知道python指令安裝在什么位置?
which python第一個(gè)python腳本hello.py
#!/usr/bin/python print 'Hello, world!'保存文件,賦給它可執(zhí)行權(quán)限,執(zhí)行
python hello.py?
?
?
轉(zhuǎn)載于:https://www.cnblogs.com/m0488/archive/2013/05/12/3073975.html
總結(jié)
以上是生活随笔為你收集整理的开始使用Python编程的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 《101 Windows Phone 7
- 下一篇: Codeforces Round #20