Answer Posted / nashiinformaticssolutions
You can use `numpy.genfromtxt()` or `numpy.loadtxt()` to read CSV files into a NumPy array.
```python
import numpy as np
data = np.genfromtxt('file.csv', delimiter=',')
```
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can you name ten built-in functions in python and explain each in brief?
What does the continue do in python?
Is python good for beginners?
What is python programming language?
Which os is best for python?
What is web scraping?
Which server is used for python?
How to share global variables across modules?
What is gil in python?
Can you sort a set in python?
Can a constructor be inherited?
Is python scripting easy to learn?
How do python thread safe?
What does len () do in python?
What is r regex?