Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python concat list multiple times

x = [1, 2, 3]
y = 2 * x
print(y) # [1, 2, 3, 1, 2, 3]
 
PREVIOUS NEXT
Tagged: #python #concat #list #multiple #times
ADD COMMENT
Topic
Name
8+8 =