operator.le() 函數
operator.le()
函數是一個庫函數operator
模塊,用於對兩個值進行“小於等於運算”並返回True
如果第一個值小於或等於第二個值,False
,否則。
模塊:
import operator
用法:
operator.le(x,y)
參數:
x,y
– 要比較的值。
返回值:
這個方法的返回類型是bool
,它返回True
如果x
小於或等於y
,False
,否則。
範例1:
# Python operator.le() Function Example
import operator
# integers
x = 10
y = 20
print("x:",x, ", y:",y)
print("operator.le(x,y):", operator.le(x,y))
print("operator.le(y,x):", operator.le(y,x))
print("operator.le(x,x):", operator.le(x,x))
print("operator.le(y,y):", operator.le(y,y))
print()
# strings
x = "Apple"
y = "Banana"
print("x:",x, ", y:",y)
print("operator.le(x,y):", operator.le(x,y))
print("operator.le(y,x):", operator.le(y,x))
print("operator.le(x,x):", operator.le(x,x))
print("operator.le(y,y):", operator.le(y,y))
print()
# printing the return type of the function
print("type((operator.le(x,y)):", type(operator.le(x,y)))
輸出:
x:10 , y:20 operator.le(x,y): True operator.le(y,x): False operator.le(x,x): True operator.le(y,y): True x:Apple , y:Banana operator.le(x,y): True operator.le(y,x): False operator.le(x,x): True operator.le(y,y): True type((operator.le(x,y)): <class 'bool'>
範例2:
# Python operator.le() 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.le(x,y):
print(x, "is less than or equal to", y)
else:
print(x, "is not less than or equal to", y)
輸出:
RUN 1: Enter first number:10 Enter second number:20 x:10 , y:20 10 is less than or equal to 20 RUN 2: Enter first number:20 Enter second number:10 x:20 , y:10 20 is not less than or equal to 10
相關用法
- Python operator.lt()用法及代碼示例
- Python operator.truth()用法及代碼示例
- Python operator.ge()用法及代碼示例
- Python operator.eq()用法及代碼示例
- Python operator.not_()用法及代碼示例
- Python operator.ne()用法及代碼示例
- Python operator.gt()用法及代碼示例
- 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.le() Function with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。