import numpy as np
X = np.arange(28).reshape(4, 7)
print(X)
print(X[::2,::3])
can please someone explain the print statement for me? I can not figure out what it realy does and what python do with it.
With best regards,
Reinhold
New contributor
bernd-reinhold.kwauka is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.