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
Explain logical operators in python?
You are having multiple memcache servers running python, in which one of the memcacher server fails, and it has your data, will it ever try to get key data from that one failed server?
What is raise keyword do in python exception handling?
Does python support switch or case statement in Python? If not what is the reason for the same?
What are the tools that help to find bugs or perform the static analysis?
Why are tuples immutable?
What is module in python?
Name the file-related modules in python?
What is python easy_install?
What is sphinx linux?
How many types of operators python has?
What is lambda in Python?
How is a .pyc file different from a .py file?
What is __init__?
What is meta class in python?