How to convert python tuple into a two-dimensional table?
Answers
Answered by
0
Answer:
mix both the tuple into two dimensions.
Answered by
0
Explanation:
The numpy. asarray() converts a tuple of lists to array, but it will create a two-dimensional array, and to convert it into a one-dimensional array, use the array. flatten() method.
Similar questions