Python trick Note

less than 1 minute read

Note một số trick python hay và ngắn

Array

Read array in one line

a = list(map(int, input().split()))
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))