python的簡單使用
hy@hy:~/Documents/py$ python
Python 2.7.8 (default, Oct 20 2014, 15:05:19) @
[GCC 4.9. , "copyright", "credits" or "license" for more information.
>>> 1+1
2
>>> exit()
>>> print1 'hello' 這裡我們輸入的print寫錯了,並且會報出一個語法錯誤, line 1
^
SyntaxError: invalid syntsy> ) ' hy@hy:~/Documents/py$ vim 1.py
#!/usr/bin/python
print 'hello world'
第一節 python檔案類型
擴充名,由python程式解釋,不需要編譯;
位元組程式碼
——python原始檔案編譯後產生的副檔名為「pyc」的方法;
-經過最佳化的來源文件,副檔名為「.pyo」
——python -O -m py_compile hello.py
以上三種皆可直接運作
下面我們透過一個例子說明一下後兩種編譯執行的過程:
1)
print 'hello world'
hy@hy:~/Documents/py$ vim 2.py
#!/usr/bin/python
.compile('1.py')
hy@hy:~/Documents/py$ python 2.py
hy@hy:~/Documents/pyp ls 。 m py_compile 1.py
hy@hy:~/Documents/py$ ls
1.py 1.pyo 產生的.pyo二進位🜥
hello world 我們看到同樣可以輸出
第二節 Python
1)變數的命名
a.變數名稱有字母、數字、底線組成 。
b.數字無法開頭
c.無法使用關鍵字
a.是變數宣告與定義的過程
a=1
ld(a)
透過下面的程式碼我們可以驗證python中變數宣告的規格
hy@hy:~/Documents/py$ python
Python 2.7.8 (default, Oct 20 2014, 15:05:19)
[GCC 4.9.1] on linux2 right",Type "pyhelp credits" or "license" for more information.
>>> a=1
>>> a
1
>>> print 1
1
>>> print a
1 > > a_1=111
>>> _a1=234
>>>
>>> 1a=123 以上皆是使用line 1
1a=123
^
SyntaxError: invalid syntax
>>>
的改變:
>>> a=123
>>> id(a) 第一次賦值後的記憶體位址的變化
>> a=456次值後來的記憶體位址的變化
28652040
我們在同一時間連續的給兩個變數賦同樣的值的時候,我們回看到他們的位址是相同的,這就是說同一資料可以有不同的標籤
>>> a=123
>>> id(a)
28372288
>>> DaysPerWeek=7
>>> HoursPerDay=24
>>> MinutesPerHour=60
>>> DaysPer週末
>>> HoursPerDay=24
>>> MinutesPerHour=60
10080
>>
1)Python運算子包括
a.賦值運算子
d.邏輯運算子
2)表達式是將不同資料(包括變數、函數)用運算符號以一定規則連接起來的一種式子
我們使用下面的範例來學習不同運算子的作用
算數運算子
> 1+1
>>> 3-2
1
12
>>> 4/2
1.5
>>> 3**2 以**表示冪運算,這裡表示平方
9
a.'
b.'>'大於: 2 > 3
c.'
e.'!='不等於: 1 != 2
在python中我們可以使用python解釋器進行數值的比較bool型
>>> 1True
>>> 1>2
False
>>> 3!=4
True
>
30
Lambda
邏輯運算:or
邏輯運算:and
邏輯運算:not
成員測試:in,not in
,>,>=,!=,==
按位或:|
按位異或:^
按位與:&
>加法與減法:+,-
乘法、除法與取餘:*,/,%
正負號:+x,-x
我們來介紹一下移位運算:
我們將數字1向左移動一位就會得到二進位數(10)也就是2
>>> 12
import sys
running = True
while running: t=int(raw_input()) 這裡我先做說明:raw_input是從鍵盤輸入一個字元或字串,然後用前面的int將這個字元或字串轉換成
p=int(raw_input()) put("please input num1:" ))這樣在輸入的時候他會提示我們輸入
except EOFError:
print 'operator * result n', t*p
print 'operator / result n',t/p
以上是第一章python入門的內容,更多相關內容請關注PHP中文網(www.php.cn)!