Python trick Note
Note một số trick python hay và ngắn
Array
Read array in one line
a = list(map(int, input().split()))
Print array split by space
print(' '.join(map(str, a)))
Reverse array
a = a[::-1]
Common value of two array
set(a) & set(b)
Array’s histogram
from collections import Counter
print(Counter(a))