Skip to content

Commit 6e40c77

Browse files
committed
Add header
1 parent d66e435 commit 6e40c77

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

0. Data Types.ipynb

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,14 @@
353353
"cell_type": "markdown",
354354
"metadata": {},
355355
"source": [
356-
"```astype``` method: convert an array to another data type. \n",
356+
"### Type Conversion"
357+
]
358+
},
359+
{
360+
"cell_type": "markdown",
361+
"metadata": {},
362+
"source": [
363+
"```astype``` method: convert the data type of an array to other data types. \n",
357364
"\n",
358365
"Notice that ```astype``` returns a copy of the array instead of converting the data type in place. You need to assign the copy to the original array or a new array."
359366
]
@@ -384,7 +391,7 @@
384391
"cell_type": "markdown",
385392
"metadata": {},
386393
"source": [
387-
"<font color=red>__WARNING__</font>: be cautious about data overflow when you downcast the data type (from higher precision to lower precision). Some unexpected and undefined values might occur and it is usually difficult to debug such issues. "
394+
"__WARNING__: be cautious about data overflow when you downcast the data type (from higher precision to lower precision). Some unexpected and undefined values might occur and it is usually difficult to debug such issues. "
388395
]
389396
},
390397
{

0 commit comments

Comments
 (0)