用python定义一个无返回值test3并调用test3
时间: 2023-05-19 17:04:35 浏览: 101
Test3简单使用示例
可以这样定义和调用test3函数:
```python
def test3():
print("This is a test function without return value.")
test3()
```
输出结果为:
```
This is a test function without return value.
```
阅读全文