无参函数输出hello world
时间: 2023-12-14 07:04:32 浏览: 74
以下是Python中无参函数输出"hello world"的例子:
```python
def hello():
print("hello world!")
hello() # 调用函数输出:hello world!
```
在这个例子中,我们定义了一个名为"hello"的函数,该函数没有任何参数。在函数体中,我们使用print()函数输出了"hello world"。最后,我们调用该函数以输出"hello world"。
相关问题
python函数输出hello world
以下是两种Python函数输出hello world的方法:
1. 使用print()函数输出hello world
```python
def hello_world():
print("hello world")
hello_world() # 调用函数输出:hello world
```
2. 使用return语句返回hello world字符串
```python
def hello_world():
return "hello world"
print(hello_world()) # 调用函数并输出返回值:hello world
```
箭头函数输出hello+world
箭头函数是一种在ES6中引入的函数定义方式,它使用箭头(=>)来定义函数,省略了function关键字,并且可以更简洁地定义函数体。下面是一个输出"Hello world"的箭头函数的例子:
```javascript
let fun = () => {
return "Hello world";
};
console.log(fun()); // 输出 Hello world
```
阅读全文