Как увеличить существующую длину с помощью NULL Python
list2 = list1 + [''] * (5 - len(list1))
SHAM3R
list2 = list1 + [''] * (5 - len(list1))