1. Python的文件類型 1. 源代碼 直接由Python解析 這裡的1.py就是源代碼 執行方式和shell腳本類似: 1. chmod +x 後,./1.py 2. Python 1.py 2. 位元組代碼 Python源碼文件經編譯後生成的擴展名為pyc的文件 編譯方法: 寫一個2.py腳本 ...
1. Python的文件類型
1. 源代碼--直接由Python解析
vi 1.py
#!/usr/bin/python
print 'hello world'
這裡的1.py就是源代碼
執行方式和shell腳本類似:
- chmod +x 後,./1.py
- Python 1.py
2. 位元組代碼
- Python源碼文件經編譯後生成的擴展名為pyc的文件
編譯方法:
[root@t1 py]# cat 2.py #!/usr/bin/python import py_compile py_compile.compile('1.py')
寫一個2.py腳本,執行,界面沒有輸出,但是看下文件列表,多了一個1.pyc
[root@t1 py]# python 2.py [root@t1 py]# ll 總用量 12 -rw-r--r-- 1 root root 38 12月 20 21:06 1.py -rw-r--r-- 1 root root 112 12月 20 21:10 1.pyc -rw-r--r-- 1 root root 66 12月 20 21:09 2.py
怎麼執行?還是python 2.py。
而且,如果源碼文件1.py不在了,2.py照樣可以執行
3. 優化代碼
- 經過優化的源碼文件,擴展名為pyo
python –O –m py_compile 1.py
[root@t1 py]# python -O -m py_compile 1.py [root@t1 py]# ls 1.py 1.pyc 1.pyo 2.py
執行優化代碼後,生成1.pyo。執行1.pyo
[root@t1 py]# python 1.pyo hello world
2.python的變數
變數是電腦記憶體中的一塊區域,變數可以存儲規定範圍內的值,而且值可以改變。
Python下變數是對一個數據的引用
- 變數的命名
- 變數名由字母、數字、下劃線組成。
- 變數不能以數字開頭
- 不可以使用關鍵字
- a a1 _a
- 變數的賦值
- 是變數的聲明和定義的過程
- a = 1
- id(a) #id顯示a在記憶體的位置號
In [1]: a = 123
In [2]: id(a)
Out[2]: 25933904
In [3]: a = 456
In [4]: id(a)
Out[4]: 33594056
In [5]: x = 'abc'
In [6]: x = abc
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-6-c455442c5ffd> in <module>()
----> 1 x = abc
NameError: name 'abc' is not defined
上面報錯的解釋,預設情況下:
數字直接寫表示數字
數字帶引號表示字元串
字元帶引號表示字元串
字元不帶引號表示變數
Python不需要事先聲明變數的類型,自動判斷
In [7]: a = 456
In [8]: type(a)
Out[8]: int
type查出a的變數類型是整數int
In [9]: a = '456'
In [10]: type(a)
Out[10]: str
type查出a的變數類型是字元串str
- Python運算符包括
1.賦值運算符
=: x = 3, y = ‘abcd’ #等於
+=: x += 2 #x=x+2
-=: x -= 2 #x=x-2
*=: x *= 2 #x=x*2
/=: x /= 2 #x=x/2
%=: x %= 2 #取餘數
2.算術運算符
+
-
*
/
//
%
**
舉例1:
In [20]: a = 1 ;b = 2
In [21]: a+b
Out[21]: 3
In [22]: 'a' + 'b'
Out[22]: 'ab'
ab賦值後,a+b是數字。直接加兩個字元就是合在一起的字元串
舉例2:
In [24]: 4 / 3
Out[24]: 1
In [25]: 4.0 / 3
Out[25]: 1.3333333333333333
4直接除3,因為預設是整數,所以結果取整數1
要想得到小數,將4變成浮點數4.0
特別的,//表示強制取整
In [26]: 4.0 // 3
Out[26]: 1.0
舉例3:
In [27]: 2 ** 3
Out[27]: 8
In [28]: 2 * 3
Out[28]: 6
一個*是乘,兩個**是冪
3.關係運算符
> : 1 > 2
< : 2 < 3
>=: 1 >= 1
<=: 2 <= 2
==: 2 == 2
!=: 1 != 2
In [33]: 1 > 2
Out[33]: False
In [34]: 1 < 2
Out[34]: True
成立就是true,不成立false
4.邏輯運算符
and邏輯與: True and False
or邏輯或: False or True
not邏輯非: not True
舉例:
In [35]: 1 < 2 and 1 >2
Out[35]: False
In [36]: 1 < 2 or 1 >2
Out[36]: True
In [37]: not 1 > 2
Out[37]: True
運算優先順序:
- input和raw_input
input適合數字,raw_input適合字元
In [41]: input("input num:")
input num:123
Out[41]: 123
In [42]: input("input num:")
input num:abc
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
<ipython-input-42-3cd60768312e> in <module>()
----> 1 input("input num:")
<string> in <module>()
NameError: name 'abc' is not defined
In [43]: input("input num:")
input num:'abc'
Out[43]: 'abc'
In [44]: raw_input("input num:")
input num:abc
Out[44]: 'abc'
有上面可以看出在input下麵,直接輸入abc報錯,但是raw_input正常顯示。
由此可以寫一個計算腳本
[root@t1 py]# cat cal.py
!/sur/bin/python
num1 = input("please input a num :")
num2 = input("please input a num :")
print "%s + %s = %s" % (num1,num2,num1+num2)
print "%s - %s = %s" % (num1,num2,num1-num2)
print "%s * %s = %s" % (num1,num2,num1*num2)
print "%s / %s = %s" % (num1,num2,num1/num2)
%s分別對應後面的數值
執行腳本
[root@t1 py]# python cal.py
please input a num :5
please input a num :6
5 + 6 = 11
5 - 6 = -1
5 * 6 = 30
5 / 6 = 0
### 3.Python的數值和字元串
數值類型:
- [ ] 整形int
整型int可以存儲2^32個數字,範圍-2,147,483,648到2147483647
例如:0,100,-100
- [ ] 長整型long
Long的範圍很大,幾乎可以說任意大的整數均可以存儲。
為了區分普通整型,需要在整數後加L或l。
例如: 2345L,0x34al
- [ ] 浮點float
例如:0.0,12.0,-18.8,3e+7等
- [ ] 複數型complex
Python對複數提供內嵌支持,這是其他大部分軟體所沒有的。
複數例子:- 3.14j,8.32e-36j
- [ ] 字元串 string
有三種方法定義字元串類型
- str = ‘this is a string’ #普通字元串
- str = “this is a string” #能夠解析\n等特殊字元
- str = ‘’‘this is a string’‘’ #可以略去\n
三重引號(docstring)除了能定義字元串還可以用作註釋。
舉例:
In [3]: a = '''hello
...: world'''
In [4]: a
Out[4]: 'hello\nworld'
In [5]: print a
hello
world
- 字元串索引,0開始,-1表示最後一個,-2倒數第二個,類推
In [6]: a = 'abcde'
In [7]: a[0:2]
Out[7]: 'ab'
a[]表示取索引指定的字元,[0:2]可以類比數學中的0<=a<2,即0<=a<=1,就是取第一個和第二個,不包括第三個
In [8]: a[:2]
Out[8]: 'ab'
In [9]: a[:]
Out[9]: 'abcde'
0或者-1可以省略
- 字元串切片
In [11]: a[0:3:2]
Out[11]: 'ac'
只取a和c,首先應該是a[0:3],但是這樣的結果是abc,a[0:3:2]的2表示步進2個,跳過b。同理,如果是a[0:3:3]表示步進3。
**如果要將整個字元串倒過來,需要用-1
In [17]: a[::-1]
Out[17]: 'edcba'
可以類比下麵的
In [16]: a[:-1]
Out[16]: 'abcd'
來個更加直觀的
In [13]: a[-2:-4:-1]
Out[13]: 'dc'
取倒數第2個和倒數第三個,而且倒序顯示
### 4.作業
將 “123” 轉換成整數
將 “9999999999999999999” 轉換成長整數
將 “3.1415926” 轉換成一個浮點數
將 123 轉換成一個字元串
現有以下字元串
字元串1:" abc deFGh&ijkl opq mnrst((uvwxyz "
字元串2:" ABC#DEF GH%IJ MNOPQ KLRS&&TUVWX(&YZ "
使用字元串的各種方法轉換成如下方式
ABCDEFGHIJKLMNOPQRSTUVWXYZzyxwvutsrqponmlkjihgfedcba
解答:
1.將 “123” 轉換成整數
num = int(123)
print num
2.將 “9999999999999999999” 轉換成長整數
num = long(9999999999999999999)
print num
3.將 “3.1415926” 轉換成一個浮點數
num = float(3.1415926)
print num
4.將 123 轉換成一個字元串
num = str(123)
print num
5.最後一題
分析思路:兩個字元串都要剔除首尾空格,特殊字元,轉換大小寫,切片,相加
- [ ] 剔除首尾空格,特殊字元
str1 = " abc deFGh&ijkl opq mnrst((uvwxyz "
str2 = " ABC#DEF GH%IJ MNOPQ KLRS&&TUVWX(&YZ "
str1 = str1.strip()
str2 = str2.strip()
print str1
print str2
strip()剔除首尾分隔符,預設是空格,可以自定義,自定義用'XX'例子見圖示
![](http://os9ep64t2.bkt.clouddn.com/17-12-20/90753838.jpg)
執行結果
C:\Users\chawn\PycharmProjects\171220\venv\Scripts\python.exe C:/Users/chawn/.PyCharmCE2017.3/config/scratches/scratch.py
abc deFGh&ijkl opq mnrst((uvwxyz
ABC#DEF GH%IJ MNOPQ KLRS&&TUVWX(&YZ
還可以用替換來剔除空格、其他字元
str1 = " abc deFGh&ijkl opq mnrst((uvwxyz "
str2 = " ABC#DEF GH%IJ MNOPQ KLRS&&TUVWX(&YZ "
str1 = str1.replace(' ','').replace('&','').replace('((','')
str2 = str2.replace(' ','').replace('#','').replace('%','').replace('&&','').replace('(&','')
print str1
print str2
replace可以替換任意位置的空格,還有字元
- [ ] 大小寫轉換+切片
str1 = " abc deFGh&ijkl opq mnrst((uvwxyz "
str2 = " ABC#DEF GH%IJ MNOPQ KLRS&&TUVWX(&YZ "
str1 = str1.replace(' ','').replace('&','').replace('((','')
str2 = str2.replace(' ','').replace('#','').replace('%','').replace('&&','').replace('(&','')
str1 = str1.lower()
str1 = str1[0:12]+str1[15:17]+str1[12:15]+str1[17:]
str2 = str2[0:10]+str2[10:15]+str2[15:17]+str2[17:]
print str2 + str1[::-1]
執行結果
C:\Users\chawn\PycharmProjects\171220\venv\Scripts\python.exe C:/Users/chawn/.PyCharmCE2017.3/config/scratches/scratch.py
ABCDEFGHIJMNOPQKLRSTUVWXYZzyxwvutsrqponmlkjihgfedcba
```