Answer Posted / glibwaresoftsolutions
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
list some of the data science libraries in python
What is the best ide for python?
Mention what is flask-wtf and what are their features?
Is python faster than matlab?
What's a negative index?
How useful is python?
which is the most commonly used package for data importing and manipulation?
What are the 5 tuples?
How we can copy an object in python?
When would you use a break statement in a for loop?
How does Python handle the memory management?
Please write a reg expression that confirms an email id using the python reg expression module
What are tuples in python?
What does len () do in python?
How to convert strings into integers in python?