windows下 python的安裝配置

來源:互聯網
上載者:User

裝:
下載,從這裡下載:http://python.org/download/
下載windows版本,下載完成以後,雙擊開啟,然後一步一步安裝。
    *Python 2.5.2 Windows installer
     :
http://python.org/ftp/python/2.5.2/python-2.5.2.msi  
115:python
          (Windows binary -- does not include source)
裝好後,啟動 Python command line,然後輸入:print "Hello World"
如果輸出"Hello World",那就表明安裝成功了。
簡單的配置:
右鍵我的電腦-屬性-進階-環境變數,在path裡輸入你的python安裝位置即可,比java簡單的多了。
我的是 E:\Python25;應該是找到pythonw.exe的父一級目錄。
測試:
隨便建一個檔案夾,如在d\code\python下建立一個文字檔,並改名為 hello.py
在文本中輸入
print "Hello World"
在命令提示字元下進入到 d\code\python路徑下
1、輸入python hello.py
2、直接輸入hello.py (必須設定環境變數才可以)
程式將會輸出Hello World
我們看另一個稍微複雜的程式:
integer1=raw_input("enter the first integer:\n")
integer1=int(integer1)
integer2=raw_input("enter the second integer:\n")
integer2=int(integer2)
sum=integer1+integer2
print "The sum is ",sum

另存新檔sum.py .
(註:raw_input是內建函數要求使用者輸入。integer1=int(integer1)將integer1轉換成整型。)
執行結果為:
E:\>python  e:\python\sum.py
enter the first integer:
8
enter the second integer:
11
The sum is  19

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.