style: html to md syntax

This commit is contained in:
Plumbiu
2023-08-24 10:31:27 +08:00
parent 229e847514
commit 0a96f3658b
88 changed files with 459 additions and 459 deletions

View File

@@ -135,9 +135,9 @@ s
可变对象的示例包括列表和字典。不可变对象的示例包括元组和函数。
我们假定已经知道了如何使用 `==` 运算符来检查两个表达式的计算结果是否<strong>相同</strong>
我们假定已经知道了如何使用 `==` 运算符来检查两个表达式的计算结果是否**相同**
我们现在引入一个新的比较运算符 `is`,它检查两个表达式的计算结果是否<strong>相同</strong>
我们现在引入一个新的比较运算符 `is`,它检查两个表达式的计算结果是否**相同**
```python
>>> 2 + 2 == 3 + 1