how to print inner tuple in python program .
Answers
Answered by
1
import numpy as np
A=np.array (1,2, (3,4))
print (A)
Similar questions