Update with corrected answer #53

Switched in/float on #53
This commit is contained in:
MikeBloom914
2018-02-17 09:27:30 -05:00
committed by GitHub
parent f056872877
commit 2bc183133c

View File

@@ -1113,8 +1113,8 @@
},
"outputs": [],
"source": [
"Z = np.arange(10, dtype=np.int32)\n",
"Z = Z.astype(np.float32, copy=False)\n",
"Z = np.arange(10, dtype=np.float32)\n",
"Z = Z.astype(np.int32, copy=False)\n",
"print(Z)"
]
},