當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python operator.lt()用法及代碼示例


operator.lt() 函數

operator.lt()函數是一個庫函數operator模塊,用於對兩個值執行“小於操作”並返回True如果第一個值小於第二個值,False,否則。

模塊:

    import operator

用法:

    operator.lt(x,y)

參數:

  • x,y– 要比較的值。

返回值:

這個方法的返回類型是bool,它返回True如果x小於yFalse,否則。

範例1:

# Python operator.lt() Function Example

import operator

# integers
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()

# strings
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()

# printing the return type of the function
print("type((operator.lt(x,y)):", type(operator.lt(x,y)))

輸出:

x:10 , y:20
operator.lt(x,y): True
operator.lt(y,x): False
operator.lt(x,x): False
operator.lt(y,y): False

x:Apple , y:Banana
operator.lt(x,y): True
operator.lt(y,x): False
operator.lt(x,x): False
operator.lt(y,y): False

type((operator.lt(x,y)): <class 'bool'>

範例2:

# Python operator.lt() 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.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


相關用法


注:本文由純淨天空篩選整理自 Python operator.lt() Function with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。