Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

easy way to create list in python of any size

# easy way to create list of any size
list_size = 10
list_ = [i for i in range(1,list_size)]
print(list_)
 
PREVIOUS NEXT
Tagged: #easy #create #list #python #size
ADD COMMENT
Topic
Name
2+6 =