四、python安裝
2
、安裝
預設安裝路徑:c:\python27
3
、配置環境變數
【右鍵計算機】
-
-
》【屬性】
-
-
》【高階系統設定】
-
-
》【高階】
-
-
》【環境變數】
-
-
》【在第二個內容框中找到 變數名為path 的一行,雙擊】
-
-
> 【python安裝目錄追加到變值值中,用 ; 分割】
如:原來的值;c:\python27,切記前面有分號
linux、mac
無需安裝,原裝python環境
ps:如果自帶
2.6
,請更新至
2.7
五、hello world程式
在linux 下建立乙個檔案叫hello.py,並輸入
1
print
(
"hello world!"
)
然後執行命令:python hello.py ,輸出
1
2
3
localhost:~ jieli$ vim hello.py
localhost:~ jieli$ python hello.py
hello world!
指定直譯器
上一步中執行 python hello.py 時,明確的指出 hello.py 指令碼由 python 直譯器來執行。
如果想要類似於執行shell指令碼一樣執行python指令碼,例:./hello.py
,那麼就需要在 hello.py 檔案的頭部指定直譯器,如下:
1
2
3
#!/usr/bin/env python
print
"hello,world"
如此一來,執行: ./hello.py
即可。
ps:執行前需給予 hello.py 執行許可權,chmod 755 hello.py
在互動器中執行
除了把程式寫在檔案裡,還可以直接呼叫python自帶的互動器執行**,
1
2
3
4
5
6
localhost:~ jieli$ python
python
2.7
.
10
(default,
oct
23
2015
,
18
:
05
:
06
)
[gcc
4.2
.
1
7.0
.
0
(clang
-
700.0
.
59.5
)] on darwin
type
"help"
,
,
"credits"
or
"license"
for
more information.
>>>
print
(
"hello world!"
)
hello world!
六、變數\字元編碼
宣告變數1
2
3
#_*_coding:utf-8_*_
name
=
"alex li"
上述**宣告了乙個變數,變數名為: name,變數name的值為:"alex li"
變數定義的規則:
變數的賦值1
2
3
4
5
name
=
"alex li"
name2
=
name
print
(name,name2)
name
=
"jack"
print
(
"what is the value of name2 now?"
)
注釋當行注視:# 被注釋內容
多行注釋:""" 被注釋內容 """
sandshell
Python成長之路 day1
print 判斷奇偶性 tmp int input 請輸入乙個整數 if tmp 2 1 print 這是乙個奇數 else print 這是乙個偶數 python demo2 用input輸入得到相應的輸出 根據性別和段位輸出相應的評價結果 gender input 請輸入性別 if gender...
專科小白學習python之路Day1
從實習開始到現在,因為被通知二十號上班,還有幾天時間,不想玩遊戲渾渾噩噩的度過了,現在出社會了感覺事事都不容易,看著爸媽日漸衰老,想真的學習好這門語言,畢竟以後想靠這個吃飯 之所以為什麼想寫部落格,主要還是想記錄一下自己從無到有這樣乙個過程吧,對自己也是一種激勵,也許多年以後學成了,再看自己寫的部落...
小白的Python之路 day1 變數
變數用於儲存在電腦程式中引用和操作的資訊。它們還提供了一種用描述性名稱標記資料的方法,這樣我們的程式就能更清晰地被讀者和我們自己理解。將變數看作儲存資訊的容器是很有幫助的。它們的唯一目的是在記憶體中標記和儲存資料。然後可以在整個程式中使用這些資料。宣告變數12 3 coding utf 8 name...