Answers for "how to do an array of arrays in python"

3

arrays in python

# In python, arrays are actually called lists. Same thing tho
list_or_array = [1.0, 2, '3', True, [1, 2, 3, 4]]
"""
So, list can contain floats, integers, strings, booleans, nested lists, and 
practically any other datatype
"""
Posted by: Guest on February-03-2021

Code answers related to "how to do an array of arrays in python"

Python Answers by Framework

Browse Popular Code Answers by Language