- 3
How to build arrays in python, and what are the basic operations???
Please share your responses
3 Answers
+ 4
The Array consept doesn't exist directly in Python
In Python u can use list instead of Array
If u wanna to make Array consists of more than 1 row and any number of columns, U can use nested list in Python to achieve the same function of Array in other programming languages
+ 3
If you want to do matrix calculations, have a look at the numpy library â it has an array class with methods and functions for matrix operations
0
Thankyou guys for value time and response i understood.