We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d6519e commit 0edbac2Copy full SHA for 0edbac2
D02/homework.py
@@ -3,7 +3,7 @@
3
array1 = np.array(range(30))
4
a = array1.reshape((5,6), order='F')
5
print(a)
6
-b = np.where(a%6==1,a,0)
+b = np.where(a%6==1,a," ")
7
c = np.where(a%6==1)
8
print(b)
9
print(c)
0 commit comments