many, many chore
This commit is contained in:
FallenYing
2023-07-28 09:30:17 +08:00
parent b043fd1d05
commit f501a6b993
33 changed files with 453 additions and 453 deletions

View File

@@ -1,10 +1,11 @@
# 阶段零Python 解释器
可参考资料
::: warning 😍 可参考资料
[官方文档](https://wiki.python.org/moin/BeginnersGuide)
[菜鸟教程](https://www.runoob.com/python3/python3-interpreter.html)
:::
你可以在终端与解释器进行交互
@@ -14,65 +15,44 @@
你可以自己把玩一下
```
```python
>>> 1 + 2
```
```
3
```
```
```python
>>> 3 - 2
```
```
1
```
```
```python
>>> 5 * 6
```
```
30
```
```
```python
>>> 7 / 4
```
```
1.75
```
```
```python
>>> 7 // 4
```
```
1
```
```
```python
>>> 7 % 4
```
```
3
```
```
>>> 4**3
```
```
```python
>>> 4 ** 3
64
```
同时可以输入 `exit``()` 或按 Ctrl+D 退出交互
同学们可能已经发现 python 这门编程语言的神奇之处了
:::: warning 🤔 同学们可能已经发现 python 这门编程语言的神奇之处了
在这里留一个思考题