Skip to content

Commit

Permalink
Update Part.1.E.5.strings.ipynb
Browse files Browse the repository at this point in the history
"ord() 接收多个字符的话会报错。" 这句话在同一段文字一开始说过了,有些重复,删掉好像比较好。
  • Loading branch information
WangZhenhuaFirst authored and xiaolai committed Dec 24, 2021
1 parent c98184f commit 9cbb4d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Part.1.E.5.strings.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"很久以前,计算机的中央处理器最多只能够处理 8 位二进制数值,所以,那时候的计算机只能处理 256 个字符,即,2<sup>8</sup> 个字符。那个时候计算机所使用的码表叫 ASCII。现在计算机的中央处理器,大多是 64 位的,所以可以使用 2<sup>64</sup> 容量的码表,叫做 [Unicode](https://zh.wikipedia.org/wiki/Unicode)。随着多年的收集,2018 年 6 月 5 日公布的 `11.0.0` 版本已经包含了 13 万个字符 —— 突破 10 万字符是在 2005 年<a href='#fn1' name='fn1b'><sup>[1]</sup></a>。\n",
"\n",
"\n",
"把单个字符转换成码值的函数是 `ord()`,它只接收单个字符,否则会报错;它返回该字符的 unicode 编码。与 `ord()` 相对的函数是 `chr()`,它接收且只接收一个整数作为参数,而后返回相应的字符。`ord()` 接收多个字符的话会报错。"
"把单个字符转换成码值的函数是 `ord()`,它只接收单个字符,否则会报错;它返回该字符的 unicode 编码。与 `ord()` 相对的函数是 `chr()`,它接收且只接收一个整数作为参数,而后返回相应的字符。"
]
},
{
Expand Down

0 comments on commit 9cbb4d3

Please sign in to comment.