只有自己去想與寫,才記得住規則,本文是18 個極簡任務,初學者可以嘗試著自己實作;Python 開發者也可以看看是不是有沒想到的用法,

1交換兩個變數
以下方法可以檢查給定串列是不是存在重復元素,它會使用 set() 函式來移除所有重復元素,
a = 4
b = 5
a,b = b,a
print(a,b)
# 5,4
2 多個變數賦值
a,b,c = 4,5.5,'Hello'
print(a,b,c)
# 4,5.5,hello
你可以使用逗號和變數一次性將多個值分配給變數,使用此技術,你可以一次分配多個資料型別,
你可以使用串列將值分配給變數,下面是將串列中的多個值分配給變數的示例,
a,b,*c = [1,2,3,4,5]
print(a,b,c)
# 1 2 [3,4,5]
3串列中偶數的和
有很多方法可以做到這一點,但最好和最簡單的方法是使用串列索引和sum函式,
a = [1,2,3,4,5,6]
s = sum([num for num in a if num%2 == 0])
print(s)
# 12
4 通過函式取差
你可以在一行代碼內呼叫多個函式,
如下方法首先會應用一個給定的函式,然后再回傳應用函式后結果有差別的串列元素,
def difference_by(a, b, fn):
b = set(map(fn, b))
return [item for item in a if fn(item) not in b]
from math import floor
difference_by([2.1, 1.2], [2.3, 3.4],floor) # [1.2]
difference_by([{ 'x': 2 }, { 'x': 1 }], [{ 'x': 1 }], lambda v : v['x'])
# [ { x: 2 } ]
5 鏈式函式呼叫
你可以在一行代碼內呼叫多個函式,
def add(a, b):
return a + b
def subtract(a, b):
return a - b
a, b = 4, 5
print((subtract if a > b else add)(a, b))
# 9
6 檢查重復項
如下代碼將檢查兩個串列是不是有重復項,
def has_duplicates(lst):
return len(lst) != len(set(lst))
x = [1,2,3,4,5,5]
y = [1,2,3,4,5]
has_duplicates(x) # True
has_duplicates(y) # False
7 合并兩個字典
下面的方法將用于合并兩個字典,
def merge_two_dicts(a, b):
c = a.copy() # make a copy of a
c.update(b) # modify keys and values of a with the once from b
return c
a={'x':1,'y':2}
b={'y':3,'z':4}
print(merge_two_dicts(a,b))
#{'y':3,'x':1,'z':4}
在 Python 3.5 或更高版本中,我們也可以用以下方式合并字典:
def merge_dictionaries(a, b)
return {**a, **b}
a = { 'x': 1, 'y': 2}
b = { 'y': 3, 'z': 4}
print(merge_dictionaries(a, b))
# {'y': 3, 'x': 1, 'z': 4}
8 將兩個串列轉化為字典
如下方法將會把兩個串列轉化為單個字典,
def to_dictionary(keys, values):
return dict(zip(keys, values))
keys = ["a", "b", "c"]
values = [2, 3, 4]
print(to_dictionary(keys, values))
#{'a': 2, 'c': 4, 'b': 3}
9 使用列舉
我們常用 For 回圈來遍歷某個串列,同樣我們也能列舉串列的索引與值,
list = ["a", "b", "c", "d"]
for index, element in enumerate(list):
print("Value", element, "Index ", index, )
# ('Value', 'a', 'Index ', 0)
# ('Value', 'b', 'Index ', 1)
#('Value', 'c', 'Index ', 2)
# ('Value', 'd', 'Index ', 3)
10 執行時間
如下代碼塊可以用來計算執行特定代碼所花費的時間,
import time
start_time = time.time()
a = 1
b = 2
c = a + b
print(c) #3
end_time = time.time()
total_time = end_time - start_time
print("Time: ", total_time)
# ('Time: ', 1.1205673217773438e-05)
11 Try else
我們在使用 try/except 陳述句的時候也可以加一個 else 子句,如果沒有觸發錯誤的話,這個子句就會被運行,
try:
2*3
except TypeError:
print("An exception was raised")
else:
print("Thank God, no exceptions were raised.")
#Thank God, no exceptions were raised.
12 元素頻率
下面的方法會根據元素頻率取串列中最常見的元素,
def most_frequent(list):
return max(set(list), key = list.count)
list = [1,2,1,2,3,2,1,4,2]
most_frequent(list)
13 回文序列
以下方法會檢查給定的字串是不是回文序列,它首先會把所有字母轉化為小寫,并移除非英文字母符號,最后,它會對比字串與反向字串是否相等,相等則表示為回文序列,
def palindrome(string):
from re import sub
s = sub('[\W_]', '', string.lower())
return s == s[::-1]
palindrome('taco cat') # True
14 不使用 if-else 的計算子
這一段代碼可以不使用條件陳述句就實作加減乘除、求冪操作,它通過字典這一資料結構實作:
import operator
action = {
"+": operator.add,
"-": operator.sub,
"/": operator.truediv,
"*": operator.mul,
"**": pow
}
print(action['-'](50, 25)) # 25
15 Shuffle
該演算法會打亂串列元素的順序,它主要會通過 Fisher-Yates 演算法對新串列進行排序:
from copy import deepcopy
from random import randint
def shuffle(lst):
temp_lst = deepcopy(lst)
m = len(temp_lst)
while (m):
m -= 1
i = randint(0, m)
temp_lst[m], temp_lst[i] = temp_lst[i], temp_lst[m]
return temp_lst
foo = [1,2,3]
shuffle(foo)
# [2,3,1] , foo = [1,2,3]
16 展開串列
將串列內的所有元素,包括子串列,都展開成一個串列,
def spread(arg):
ret = []
for i in arg:if isinstance(i, list):
ret.extend(i)
else:
ret.append(i)
return ret
spread([1,2,3,[4,5,6],[7],8,9])
# [1,2,3,4,5,6,7,8,9]
17 交換值
不需要額外的操作就能交換兩個變數的值,
def swap(a, b):
return b, a
a, b = -1, 14
swap(a, b)
# (14, -1)
spread([1,2,3,[4,5,6],[7],8,9])
# [1,2,3,4,5,6,7,8,9]
18 字典默認值
通過 Key 取對應的 Value 值,可以通過以下方式設定默認值,如果 get() 方法沒有設定默認值,那么如果遇到不存在的 Key,則會回傳 None,
d = {'a': 1, 'b': 2}
print(d.get('c', 3)) # 3
喜歡就獎勵一個“👍”和“在看”唄~
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/276633.html
標籤:python
上一篇:可視化—三維圖的繪制
下一篇:爬取網易云資料并且可視化展示
