Tagged Questions
2
votes
2answers
122 views
Python: check if an object is NOT an “array-type”
I'm looking for a way to test if an object is not of a "list-ish" type, that is - not only that the object is not iterable (e.g. - you can also run iter on a string, or on a simple object that ...
1
vote
2answers
921 views
haXe and arrays Dynamic type
I know it's unlikely but maybe there is someone who knows haXe language.
I have a variable of Dynamic type and I know for sure one of it's fields, lets call it an 'a' actually is an array. But when ...
0
votes
5answers
243 views
Convert Any Iterable to Array in Python
This just has to be a dupe, but I just didn't find any existing instance of this question...
What is the easiest way to convert any iterable to an array in Python (ideally, without importing ...