python cls()
时间: 2023-08-10 12:08:03 浏览: 94
深入浅析python 中的self和cls的区别
在 Python 中,没有内置的 `cls()` 函数。如果您想在控制台清屏,可以使用以下代码:
```python
import os
def clear_screen():
os.system('cls' if os.name == 'nt' else 'clear')
```
这个函数会在 Windows 系统上使用 `cls` 命令来清屏,在其他操作系统上使用 `clear` 命令来清屏。然后您可以通过调用 `clear_screen()` 函数来清屏。
阅读全文