i have a list with three lists inside it iam trying to turn it to one list that has all the items that were in the 3 seperated list and with the same order
so for example I have a list "B" which has 3 lists inside it. I ran for loop in a range of (len(B)-1) applying this command:
B[0]=B[0].extend(B[1])
But the value of B[0] became None . and I don't know why
small note: the problem that I'm solving is preventing me from using any if condition in my code