用python定义一个有参数没有返回值的函数并调用
时间: 2024-05-07 13:17:49 浏览: 93
浅谈Python中函数的定义及其调用方法
可以这样定义一个有参数没有返回值的函数:
``` python
def greet(name):
print("Hello, " + name + "! Welcome to our website.")
```
这个函数接受一个参数 `name`,然后在控制台打印一条问候语。
我们可以这样调用这个函数:
``` python
greet("Alice")
```
这会输出:
```
Hello, Alice! Welcome to our website.
```
阅读全文