How to append item to list N times in Python

5 Answers

0 votes
a_list = [0] * 5

print(a_list)

'''
run:

[0, 0, 0, 0, 0]

'''

 



answered Oct 20, 2017 by avibootz
0 votes
a_list = ['abc'] * 5

print(a_list)

'''
run:

['abc', 'abc', 'abc', 'abc', 'abc']

'''

 



answered Oct 20, 2017 by avibootz
0 votes
a_list = [3] * 10

print(a_list)

'''
run:

[3, 3, 3, 3, 3, 3, 3, 3, 3, 3]

'''

 



answered Oct 20, 2017 by avibootz
0 votes
a_list = [3] * 5

a_list.extend([4 for i in range(5)])

print(a_list)

'''
run:

[3, 3, 3, 3, 3, 4, 4, 4, 4, 4]

'''

 



answered Oct 20, 2017 by avibootz
0 votes
a_list = [0]*0

a_list.extend([4 for i in range(5)])

print(a_list)

'''
run:

[4, 4, 4, 4, 4]

'''

 



answered Oct 20, 2017 by avibootz

Related questions

...