Let's say I have a tuple t = (1,2,3,4). What's the simple way to change it into Array?
I can do something like this,
array = []
for i in t:
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 tupleas the name of a variable.
list,tuple,numpy.array,yourawesomeiterabletype, whatever.listandtuple. Why do you want to change one sequence into another?