+ 2
What is the difference between Python Arrays and lists in python?
EXPLAIN WITH EXAMPLE PLS
2 odpowiedzi
+ 3
Python does have arrays, but they require the use of the array module. Unlike a list an array in python can only have 1 type.
See the documentation for more info:
https://docs.python.org/3/library/array.html
+ 1
Python doesn't have native Array support.