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
What is raw_input?
Where do you use python programming? Can you describe in detail?
Explain me five benefits of using python?
How is python better than c?
How do I run notepad ++ in python?
Who created python?
What are the differences between the threading and multiprocessing in python?
How do you sort in python 3?
How do you achieve web scraping in python?
Explain python functions?
Does python have encapsulation?
Which python library would you prefer to use for data munging?
How are the functions help() and dir() different?
What is meant by attribute error in python?
What is a docstring?