Quick question:
The list() function to turn strings/tuples into a list does not seem to work in pythonista with 3.5. I get the error: “‘list’ object is not callable. But run the same script in 2.7 it works. Googling around I didn’t find anything to indicate that list has depreciated.
Here’s an example:
myarray = list('1abcdefg')
print(myarray)
It works in 2.7 but not 3.5. Anyone have an idea on how to convert to a list in pythonista 3.5? Thanks!