On 2017-11-16 18:47, jakub.raj...@gmail.com wrote:
Hello, im working on school project, its deck game Sorry!
I need to create specific lists:
My idea is about to using for
For i in range (n):
        i=[]
I know, that there is no possibility to make it from number, but i havent idea, how to 
reach my wants Li/L"i"/L(i), how to make possible for lists?


If you want multiple lists, make a list of lists:

my_lists = []

for i in range(n):
    my_lists.append([])

Then you can say my_lists[0], my_lists[1], etc.
--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to