I have the following list:
JavaScript
x
2
1
l = [5, 6, 7, 1]
2
I need to populate this list with the first value (i.e. 5) so that the length of this list becomes equal to 10.
Expected result:
JavaScript
1
2
1
l_extended = [5, 5, 5, 5, 5, 5, 5, 6, 7, 1]
2
I can do it in for loop:
JavaScript
1
10
10
1
fixed_val = l[0]
2
len_diff = 10 - len(l)
3
l_extended = []
4
5
for n in range(len_diff):
6
l_extended.append(fixed_val)
7
8
for n in range(len_diff,10):
9
l_extended.append(l[n-len_diff])
10
But is there any shorter way to do it?
Advertisement
Answer
Also consider
JavaScript
1
3
1
a = [1,2,3]
2
a_extended = [ a[0] ] * ( 10-len(a) ) + a
3
Explanation:
a[0]
grabs the first element
(10-len(a))
is the number of characters we need to add to get the length to 10
In Python, you can do [1] * 3
to get [1,1,1]
, so:
[a[0]] * (10-len(a))
repeats the first element by how many extra elements we need
In python, you can do [1,2,3] + [4,5,6]
to get [1,2,3,4,5,6]
, so:
[a[0]]*(10-len(a)) + a
adds the extra elements onto the front of the list