operator.ge() 函数
operator.ge()
函数是一个库函数operator
模块,用于对两个值执行“大于或等于操作”并返回True
如果第一个值大于或等于第二个值,False
,否则。
模块:
import operator
用法:
operator.ge(x,y)
参数:
x,y
– 要比较的值。
返回值:
这个方法的返回类型是bool
,它返回True
如果x
大于或等于y
,False
,否则。
范例1:
# Python operator.ge() Function Example
import operator
# integers
x = 10
y = 20
print("x:",x, ", y:",y)
print("operator.ge(x,y):", operator.ge(x,y))
print("operator.ge(y,x):", operator.ge(y,x))
print("operator.ge(x,x):", operator.ge(x,x))
print("operator.ge(y,y):", operator.ge(y,y))
print()
# strings
x = "Apple"
y = "Banana"
print("x:",x, ", y:",y)
print("operator.ge(x,y):", operator.ge(x,y))
print("operator.ge(y,x):", operator.ge(y,x))
print("operator.ge(x,x):", operator.ge(x,x))
print("operator.ge(y,y):", operator.ge(y,y))
print()
# printing the return type of the function
print("type((operator.ge(x,y)):", type(operator.ge(x,y)))
输出:
x:10 , y:20 operator.ge(x,y): False operator.ge(y,x): True operator.ge(x,x): True operator.ge(y,y): True x:Apple , y:Banana operator.ge(x,y): False operator.ge(y,x): True operator.ge(x,x): True operator.ge(y,y): True type((operator.ge(x,y)): <class 'bool'>
范例2:
# Python operator.ge() Function Example
import operator
# input two numbers
x = int(input("Enter first number:"))
y = int(input("Enter second number:"))
# printing the values
print("x:",x, ", y:",y)
# comparing
if operator.ge(x,y):
print(x, "is greater than or equal to", y)
else:
print(x, "is not greater than or equal to", y)
输出:
RUN 1: Enter first number:20 Enter second number:10 x:20 , y:10 20 is greater than or equal to 10 RUN 2: Enter first number:10 Enter second number:10 x:10 , y:10 10 is greater than or equal to 10 RUN 3: Enter first number:10 Enter second number:20 x:10 , y:20 10 is not greater than or equal to 20
相关用法
- Python operator.gt()用法及代码示例
- Python operator.truth()用法及代码示例
- Python operator.le()用法及代码示例
- Python operator.eq()用法及代码示例
- Python operator.not_()用法及代码示例
- Python operator.lt()用法及代码示例
- Python operator.ne()用法及代码示例
- Python open()用法及代码示例
- Python os.path.normcase()用法及代码示例
- Python os.read()用法及代码示例
- Python os.DirEntry.inode()用法及代码示例
- Python os.closerange()用法及代码示例
- Python os.set_blocking()用法及代码示例
- Python os.chflags()用法及代码示例
- Python os.WCOREDUMP()用法及代码示例
- Python os.fork()用法及代码示例
- Python os.ctermid()用法及代码示例
- Python os.mkfifo()用法及代码示例
- Python os.mkdir()用法及代码示例
- Python os.close()用法及代码示例
注:本文由纯净天空筛选整理自 Python operator.ge() Function with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。