Concern about [ ].
The symbol [ ] is also know as "array" in python, right? I just need some clarifications.
2 answers ( 0 marked as helpful)
I think [ ] is called List. There is no array Functions in python.
Hi Ferdinand!
Thanks for reaching out!
As Rohit stated in Python, [ ]
defines a list, not an array. Lists are built-in and mutable, while arrays are typically used via libraries like NumPy for numerical computations.
Hope this helps.
Best,
Martin