python3參考祕籍-附PDF下載

簡介

Python做爲一個開源的優秀語言,隨着它在數據分析和機器學習方面的優點,已經獲得愈來愈多人的喜好。聽說小學生都要開始學Python了。python

Python的優秀之處在於能夠安裝不少很是強大的lib庫,從而進行很是強大的科學計算。git

講真,這麼優秀的語言,有沒有什麼辦法能夠快速的進行學習呢?github

有的,本文就是python3的基礎祕籍,看了這本祕籍python3的核心思想就掌握了,文末還有PDF下載連接哦,歡迎你們下載。編程

Python的主要數據類型

python中全部的值均可以被看作是一個對象Object。每個對象都有一個類型。app

下面是三種最最經常使用的類型:less

  • Integers (int)

整數類型,好比: -2, -1, 0, 1, 2, 3, 4, 5機器學習

  • Floating-point numbers (float)

浮點類型,好比:-1.25, -1.0, --0.5, 0.0, 0.5, 1.0, 1.25編程語言

  • Strings

字符串類型,好比:「www.flydean.com」ide

注意,字符串是不可變的,若是咱們使用replace() 或者 join() 方法,則會建立新的字符串。函數

除此以外,還有三種類型,分別是列表,字典和元組。

  • 列表

列表用方括號表示: a_list = [2, 3, 7, None]

  • 元組

元組用圓括號表示: tup=(1,2,3) 或者直接用逗號表示:tup=1,2,3

Python中的String操做

python中String有三種建立方式,分別能夠用單引號,雙引號和三引號來表示。

基本操做

my_string = 「Let’s Learn Python!」
another_string = ‘It may seem difficult first, but you can do it!’
a_long_string = ‘’‘Yes, you can even master multi-line strings
 that cover more than one line
 with some practice’’’

也可使用print來輸出:

print(「Let’s print out a string!」)

String鏈接

String可使用加號進行鏈接。

string_one = 「I’m reading 「
string_two = 「a new great book!」 
string_three = string_one + string_two

注意,加號鏈接不能鏈接兩種不一樣的類型,好比String + integer,若是你這樣作的話,會報下面的錯誤:

TypeError: Can’t convert ‘int’ object to str implicitly

String複製

String可使用 * 來進行復制操做:

‘Alice’ * 5 ‘AliceAliceAliceAliceAlice’

或者直接使用print:

print(「Alice」 * 5)

Math操做

咱們看下python中的數學操做符:

操做符 含義 舉例
** 指數操做 2 * 3 = 8*
% 餘數 22 % 8 = 6
// 整數除法 22 // 8 = 2
/ 除法 22 / 8 = 2.75
***** 乘法 3*3= 9
- 減法 5-2= 3
+ 加法 2+2= 4

內置函數

咱們前面已經學過了python中內置的函數print(),接下來咱們再看其餘的幾個經常使用的內置函數:

  • Input() Function

input用來接收用戶輸入,全部的輸入都是以string形式進行存儲:

name = input(「Hi! What’s your name? 「) 
print(「Nice to meet you 「 + name + 「!」)
age = input(「How old are you 「)
print(「So, you are already 「 + str(age) + 「 years old, 「 + name + 「!」)

運行結果以下:

Hi! What’s your name? 「Jim」
Nice to meet you, Jim!
How old are you? 25
So, you are already 25 years old, Jim!
  • len() Function

len()用來表示字符串,列表,元組和字典的長度。

舉個例子:

# testing len()
str1 = 「Hope you are enjoying our tutorial!」 
print(「The length of the string is :」, len(str1))

輸出:

The length of the string is: 35
  • filter()

filter從可遍歷的對象,好比列表,元組和字典中過濾對應的元素:

ages = [5, 12, 17, 18, 24, 32]
def myFunc(x):
  if x < 18:
    return False
  else:
return True
adults = filter(myFunc, ages)
for x in adults:
  print(x)

函數Function

python中,函數能夠看作是用來執行特定功能的一段代碼。

咱們使用def來定義函數:

def add_numbers(x, y, z): 
  a= x + y
	b= x + z
	c= y + z 
	print(a, b, c)
  
add_numbers(1, 2, 3)

注意,函數的內容要以空格或者tab來進行分隔。

傳遞參數

函數能夠傳遞參數,並能夠經過經過命名參數賦值來傳遞參數:

# Define function with parameters
def product_info(productname, dollars):
    print("productname: " + productname)
    print("Price " + str(dollars))


# Call function with parameters assigned as above
product_info("White T-shirt", 15)

# Call function with keyword arguments
product_info(productname="jeans", dollars=45)

列表

列表用來表示有順序的數據集合。和String不一樣的是,List是可變的。

看一個list的例子:

my_list = [1, 2, 3]
my_list2 = [「a」, 「b」, 「c」] 
my_list3 = [「4」, d, 「book」, 5]

除此以外,還可使用list() 來對元組進行轉換:

alpha_list = list((「1」, 「2」, 「3」)) 
 print(alpha_list)

添加元素

咱們使用append() 來添加元素:

beta_list = [「apple」, 「banana」, 「orange」] 
beta_list.append(「grape」) 
print(beta_list)

或者使用insert() 來在特定的index添加元素:

beta_list = [「apple」, 「banana」, 「orange」] 
beta_list.insert(「2 grape」) 
print(beta_list)

從list中刪除元素

咱們使用remove() 來刪除元素

beta_list = [「apple」, 「banana」, 「orange」] 
beta_list.remove(「apple」) 
print(beta_list)

或者使用pop() 來刪除最後的元素:

beta_list = [「apple」, 「banana」, 「orange」] 
beta_list.pop()
print(beta_list)

或者使用del 來刪除具體的元素:

beta_list = [「apple」, 「banana」, 「orange」] 
del beta_list [1]
print(beta_list)

合併list

咱們可使用+來合併兩個list:

my_list = [1, 2, 3]
my_list2 = [「a」, 「b」, 「c」] 
combo_list = my_list + my_list2 
combo_list
[1, 2, 3, ‘a’, ‘b’, ‘c’]

建立嵌套的list

咱們還能夠在list中建立list:

my_nested_list = [my_list, my_list2] 
my_nested_list
[[1, 2, 3], [‘a’, ‘b’, ‘c’]]

list排序

咱們使用sort()來進行list排序:

alpha_list = [34, 23, 67, 100, 88, 2] 
alpha_list.sort()
alpha_list
[2, 23, 34, 67, 88, 100]

list切片

咱們使用[x:y]來進行list切片:

alpha_list[0:4]
[2, 23, 34, 67]

修改list的值

咱們能夠經過index來改變list的值:

beta_list = [「apple」, 「banana」, 「orange」] 
beta_list[1] = 「pear」
print(beta_list)

輸出:

[‘apple’, ‘pear’, ‘cherry’]

list遍歷

咱們使用for loop 來進行list的遍歷:

for x in range(1,4): 
  beta_list += [‘fruit’] 
  print(beta_list)

list拷貝

可使用copy() 來進行list的拷貝:

beta_list = [「apple」, 「banana」, 「orange」] 
beta_list = beta_list.copy() 
print(beta_list)

或者使用list()來拷貝:

beta_list = [「apple」, 「banana」, 「orange」] 
beta_list = list (beta_list) 
print(beta_list)

list高級操做

list還能夠進行一些高級操做:

list_variable = [x for x in iterable]

 number_list = [x ** 2 for x in range(10) if x % 2 == 0] 
 print(number_list)

元組

元組的英文名叫Tuples,和list不一樣的是,元組是不能被修改的。而且元組的速度會比list要快。

看下怎麼建立元組:

my_tuple = (1, 2, 3, 4, 5) 
my_tuple[0:3]
(1, 2, 3)

元組切片

numbers = (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12) 
 print(numbers[1:11:2])

輸出:

(1,3,5,7,9)

元組轉爲list

可使用list和tuple進行相互轉換:

x = (「apple」, 「orange」, 「pear」) 
y = list(x)
y[1] = 「grape」
x = tuple(y)
print(x)

字典

字典是一個key-value的集合。

在python中key能夠是String,Boolean或者integer類型:

Customer 1= {‘username’: ‘john-sea’, ‘online’: false, ‘friends’:100}

建立字典

下面是兩種建立空字典的方式:

new_dict = {}
other_dict= dict()

或者像下面這樣來初始賦值:

new_dict = { 
  「brand」: 「Honda」, 
  「model」: 「Civic」, 
  「year」: 1995
}
print(new_dict)

訪問字典的元素

咱們這樣訪問字典:

x = new_dict[「brand」]

或者使用dict.keys()dict.values()dict.items()來獲取要訪問的元素。

修改字典的元素

咱們能夠這樣修改字典的元素:

#Change the 「year」 to 2020:
new_dict= { 
  「brand」: 「Honda」, 
  「model」: 「Civic」, 
  「year」: 1995
}
new_dict[「year」] = 2020

遍歷字典

看下怎麼遍歷字典:

#print all key names in the dictionary
for x in new_dict:
  print(x)
#print all values in the dictionary
for x in new_dict:
  print(new_dict[x])
#loop through both keys and values
for x, y in my_dict.items(): print(x, y)

if語句

和其餘的語言同樣,python也支持基本的邏輯判斷語句:

  • Equals: a == b
  • Not Equals: a != b
  • Less than: a < b
  • Less than or equal to a <= b
  • Greater than: a > b
  • Greater than or equal to: a >= b

看下在python中if語句是怎麼使用的:

if 5 > 1:
	print(「That’s True!」)

if語句還能夠嵌套:

x = 35
	if x > 20:
		print(「Above twenty,」) 
    if x > 30:
			print(「and also above 30!」)

elif

a = 45
b = 45
if b > a:
	print(「b is greater than a」) 
elif a == b:
	print(「a and b are equal」)

if else:

if age < 4: 
ticket_price = 0
elif age < 18: 
ticket_price = 10
else: ticket_price = 15

if not:

new_list = [1, 2, 3, 4] 
x = 10
if x not in new_list:
	print(「’x’ isn’t on the list, so this is True!」)

Pass:

a = 33 
b = 200
if b > a: 
  pass

Python循環

python支持兩種類型的循環,for和while

for循環

for x in 「apple」: 
    print(x)

for能夠遍歷list, tuple,dictionary,string等等。

while循環

#print as long as x is less than 8
i =1 
while i< 8:
	print(x) 
  i += 1

break loop

i =1
while i < 8:
	print(i) 
  if i == 4:
		break
	i += 1

Class

Python做爲一個面向對象的編程語言,幾乎全部的元素均可以看作是一個對象。對象能夠看作是Class的實例。

接下來咱們來看一下class的基本操做。

建立class

class TestClass: 
    z =5

上面的例子咱們定義了一個class,而且指定了它的一個屬性z。

建立Object

p1 = TestClass() 
 print(p1.x)

還能夠給class分配不一樣的屬性和方法:

class car(object):
  「」」docstring」」」
	def __init__(self, color, doors, tires):
    「」」Constructor」」」
		self.color = color
    self.doors = doors
    self.tires = tires
    
	def brake(self):
    「」」
		Stop the car
		「」」
		return 「Braking」
  
	def drive(self): 
    「」」
		Drive the car
		「」」
		return 「I’m driving!」

建立子類

每個class均可以子類化

class Car(Vehicle):
  「」」
	The Car class 
  「」」
  
def brake(self):
  「」」
	Override brake method
	「」」
	return 「The car class is breaking slowly!」

if __name__ == 「__main__」:
	car = Car(「yellow」, 2, 4, 「car」)
  car.brake()
	‘The car class is breaking slowly!’
  car.drive()
	「I’m driving a yellow car!」

異常

python有內置的異常處理機制,用來處理程序中的異常信息。

內置異常類型

  • AttributeError — 屬性引用和賦值異常
  • IOError — IO異常
  • ImportError — import異常
  • IndexError — index超出範圍
  • KeyError — 字典中的key不存在
  • KeyboardInterrupt — Control-C 或者 Delete時,報的異常
  • NameError — 找不到 local 或者 global 的name
  • OSError — 系統相關的錯誤
  • SyntaxError — 解釋器異常
  • TypeError — 類型操做錯誤
  • ValueError — 內置操做參數類型正確,可是value不對。
  • ZeroDivisionError — 除0錯誤

異常處理

使用try,catch來處理異常:

my_dict = {「a」:1, 「b」:2, 「c」:3}
try:
		value = my_dict[「d」]
except KeyError:
		print(「That key does not exist!」)

處理多個異常:

my_dict = {「a」:1, 「b」:2, 「c」:3}
try:
	value = my_dict[「d」]
except IndexError:
	print(「This index does not exist!」)
except KeyError:
	print(「This key is not in the dictionary!」)
except:
	print(「Some other problem happened!」)

try/except else:

my_dict = {「a」:1, 「b」:2, 「c」:3}
try:
	value = my_dict[「a」]
except KeyError:
	print(「A KeyError occurred!」)
else:
	print(「No error occurred!」)

本文已收錄於 http://www.flydean.com/python3-cheatsheet/

最通俗的解讀,最深入的乾貨,最簡潔的教程,衆多你不知道的小技巧等你來發現!

歡迎關注個人公衆號:「程序那些事」,懂技術,更懂你!

相關文章
相關標籤/搜索