Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
using ravel() we can combine arrays into single
Home
NumPy
using ravel() we can combine arrays into single
+1
vote
asked
Jul 9, 2021
in
NumPy
by
rajeshsharma
using ravel() we can combine arrays into single
numpy-print
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 9, 2021
by
rajeshsharma
using ravel() we can combine arrays into single
a = np.array([(1,2,3),(4,5,6)])
print(a.ravel())
...