windows终端写python函数
时间: 2023-07-25 19:20:13 浏览: 92
windows python 3.10.6 安装包
你可以按照以下步骤在 Windows 终端中编写 Python 函数:
1. 打开命令提示符或 PowerShell。
2. 使用 `cd` 命令切换到你的 Python 文件所在的目录。
3. 使用 `notepad` 命令打开一个文本编辑器,例如:
```
notepad my_script.py
```
4. 在文本编辑器中编写 Python 函数,例如:
```python
def add(a, b):
return a + b
```
5. 保存文件并退出文本编辑器。
6. 在命令提示符或 PowerShell 中运行 Python 文件,例如:
```
python my_script.py
```
7. 在 Python 解释器中调用函数,例如:
```python
>>> from my_script import add
>>> add(2, 3)
5
```
这样,你就可以在 Windows 终端中编写和调用 Python 函数了。
阅读全文