Python operator.lt()函数与示例
operator.lt()功能
operator.lt()函数是运算符模块的库函数,用于对两个值执行“小于运算”,如果第一个值小于第二个值,则返回True,否则返回False。
模块:
import operator
语法:
operator.lt(x,y)
Parameter(s):
x,y–要比较的值。
返回值:
此方法的返回类型为bool,如果x小于y,则返回True,否则返回False。
范例1:
# Python operator.lt() Function Example
import operator
#整数
x = 10
y = 20
print("x:",x, ", y:",y)
print("operator.lt(x,y): ", operator.lt(x,y))
print("operator.lt(y,x): ", operator.lt(y,x))
print("operator.lt(x,x): ", operator.lt(x,x))
print("operator.lt(y,y): ", operator.lt(y,y))print()#弦
x = "Apple"
y = "Banana"
print("x:",x, ", y:",y)
print("operator.lt(x,y): ", operator.lt(x,y))
print("operator.lt(y,x): ", operator.lt(y,x))
print("operator.lt(x,x): ", operator.lt(x,x))
print("operator.lt(y,y): ", operator.lt(y,y))print()#打印函数的返回类型
print("type((operator.lt(x,y)): ", type(operator.lt(x,y)))输出:
x: 10 , y: 20operator.lt(x,y): Trueoperator.lt(y,x): Falseoperator.lt(x,x): Falseoperator.lt(y,y): False x: Apple , y: Bananaoperator.lt(x,y): Trueoperator.lt(y,x): Falseoperator.lt(x,x): Falseoperator.lt(y,y): False type((operator.lt(x,y)): <class 'bool'>
范例2:
# Python operator.lt() Function Example
import operator
#输入两个数字
x = int(input("Enter first number : "))
y = int(input("Enter second number: "))
#打印值
print("x:",x, ", y:",y)
#比较
if operator.lt(x,y):
print(x, "is less than ", y)
else:
print(x, "is not less than ", y)输出:
RUN 1: Enter first number : 10 Enter second number: 20 x: 10 , y: 20 10 is less than 20 RUN 2: Enter first number : 20 Enter second number: 10 x: 20 , y: 10 20 is not less than 10