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 GiL in python programming language?
What is numpy? Is it better than a list?
What is docstring? How to define it?
Does .net support python?
How do I generate random numbers in python?
What is a flask?
What are the disadvantages of using python?
What is a pil 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?
How to find the index of an item given a list containing it in python?
What is a function call or a callable object in python?
What do you understand of pep 8?
How will you use python to read a random line from a file?
Which of the languages does Python resemble in its class syntax?
What is typecasting in python?