hello,
for indexing and slicing primer, the "using step" part:
print(A[:, 1:10:2]) # Print Columns 2,4, 6, 8, 10
isn't it supposed to be:
print(A2[:, 1:10:2]) # Print Columns 2,4, 6, 8, 10
?
thank you
Thanks for your feedback. We will fix the code.
np… thx
Code has been updated. Please check it out.