Fix hint in question 53 .ipynb & .md files

This commit is contained in:
Samuel Prevost 2020-01-01 10:53:39 -05:00
parent e2dc21f4ac
commit 5f70a14d65
No known key found for this signature in database
GPG Key ID: 190FA96337B3CCE0
2 changed files with 3 additions and 3 deletions

View File

@ -866,7 +866,7 @@
"metadata": {},
"source": [
"#### 53. How to convert a float (32 bits) array into an integer (32 bits) in place? \n",
"(**hint**: astype(copy=False))"
"(**hint**: view and [:] = )"
]
},
{
@ -1611,7 +1611,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.4"
"version": "3.7.6"
}
},
"nbformat": 4,

View File

@ -351,7 +351,7 @@ np.sqrt(-1) == np.emath.sqrt(-1)
#### 53. How to convert a float (32 bits) array into an integer (32 bits) in place?
(**hint**: astype(copy=False))
(**hint**: view and [:] = )