python函数返回true
时间: 2023-11-29 12:05:52 浏览: 64
Python定义函数功能与用法实例详解
在Python中,函数的返回值可以是任何类型的对象。如果函数的返回值为True,则函数可以这样写:
```python
def my_function():
# some code here
return True
```
这个函数将总是返回True。你也可以使用条件语句在函数内部判断,并在满足条件时返回True:
```python
def my_function(input):
if input > 0:
return True
else:
return False
```
在这个例子中,如果传入的数值大于0,则函数将返回True,否则将返回False。
阅读全文