基础练习: 定义一个不需要返口值的 shov函数,接收3个参数,分别是:name,age,neight,对应的属性分别是!廷名,年龄,身高。构思好合适的参数炎据类型,然后在 show函数中把表 中 这些信息揄出出来
时间: 2024-05-07 14:19:04 浏览: 40
以下是实现该函数的代码:
```python
def show(name: str, age: int, height: float) -> None:
print("Name:", name)
print("Age:", age)
print("Height:", height)
```
使用方式如下:
```python
show("John", 25, 1.75)
```
输出结果如下:
```
Name: John
Age: 25
Height: 1.75
```
阅读全文