Let's say I have a tuple (1,2,3,4). What's the simple way to change it into Array?
I can do something like this,
array = []
for i in tuple:
array.append(i)
But I prefer something like x.toArray() or something.
Let's say I have a tuple (1,2,3,4). What's the simple way to change it into Array?
I can do something like this,
array = []
for i in tuple:
array.append(i)
But I prefer something like x.toArray() or something.
If you want to convert a tuple to a list (as you seem to want) use this:
>>> t = (1, 2, 3, 4) # t is the tuple (1, 2, 3, 4)
>>> l = list(t) # l is the list [1, 2, 3, 4]
In addition I would advise against using tuple
as the name of a variable.