需求背景:
進(jìn)行分值計(jì)算。如下圖,如果只是一兩個(gè)還好說(shuō),寫寫判斷,但是如果有幾十個(gè),幾百個(gè),會(huì)不會(huì)慘不忍睹。而且,下面的還是三種情況。
例如:
解決:
# 根據(jù)值、比較list, 值list,返回區(qū)間值, other_value 即不在的情況
def get_value_by_between(self, compare_value, compare_list, value_list, other_value, type="compare", left=False,
right=True):
try:
if compare_value is None or compare_value == '':
return other_value
if len(compare_list) != len(value_list):
raise Exception("區(qū)間對(duì)比兩個(gè)list長(zhǎng)度不一致")
# # 如果比較的值和其它情況值一致,說(shuō)明是其它情況
# if compare_value == other_value:
# return other_value
# 左邊開(kāi)區(qū)間
if compare_list[0] == -9999999 and compare_list[1] >= compare_value:
return value_list[0]
# 右邊開(kāi)區(qū)間
if right is True and compare_value > compare_list[len(compare_list) - 1]:
return value_list[len(compare_list) - 1]
# 左邊開(kāi)區(qū)間
# if left is True and compare_value = compare_list[0]:
# return compare_value[0]
for ind, this_val in enumerate(compare_list):
# 如果是最后一個(gè),則返回最后一個(gè)值
if compare_value > compare_list[len(compare_list) - 1]:
return value_list[len(compare_list) - 1]
# 返回默認(rèn)的
elif (ind + 1) == len(compare_list):
return other_value
# 下一個(gè),如果大于compare_list長(zhǎng)度減1 ,就返回最后一個(gè)
next_val = compare_list[ind if ind >= len(compare_list) else ind + 1]
# 第一個(gè)的話就是 大于等于,小于下一個(gè)
if ind == 0 and compare_value >= this_val and compare_value = next_val:
return value_list[ind]
# 大于左邊,小于等于右邊
elif this_val compare_value and compare_value = next_val:
return value_list[ind]
except:
log.error("根據(jù)區(qū)間計(jì)算分?jǐn)?shù)異常", traceback.format_exc())
return other_value
# 數(shù)字型
def get_val_by_list(self, compare_value, compare_list, val_list, other_value):
try:
if compare_value is None:
return other_value
for ind, li in enumerate(compare_list):
if len(li) == 1 and compare_value == li[0]:
return val_list[ind]
# 最后一個(gè)
elif len(li) == 1 and (ind + 1) == len(compare_list) and compare_value >= li[0]:
return val_list[ind]
elif len(li) == 2 and compare_value >= li[0] and compare_value = li[1]:
return val_list[ind]
except:
log.error(" get_val_by_list 異常", traceback.format_exc())
return other_value
TEST
# creditTime 即值
self.get_val_by_list(creditTime, [[0],[1],[2],[3]], [20, 10, 0, -100],
other_value=0)
self.get_value_by_between(taxCreditRating, [0, 60, 70, 80, 90],[-200, 0, 10, 20, 30], other_value=0)
如果是圖2,即第三種情況,則需要多加一個(gè)0,和對(duì)應(yīng)的值。
self.get_value_by_between(taxAmt12m, [0,0, 1000, 15000, 50000, 200000],[-50, -50, 0, 0, 5, 10], -0)
如果是負(fù)無(wú)窮大,則使用-999999
到此這篇關(guān)于Python進(jìn)行區(qū)間取值案例講解的文章就介紹到這了,更多相關(guān)Python進(jìn)行區(qū)間取值內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- 使用python 進(jìn)行區(qū)間取值的方法
- python 計(jì)算t分布的雙側(cè)置信區(qū)間
- Python求區(qū)間正整數(shù)內(nèi)所有素?cái)?shù)之和的方法實(shí)例
- python如何遍歷指定路徑下所有文件(按按照時(shí)間區(qū)間檢索)
- Python 判斷時(shí)間是否在時(shí)間區(qū)間內(nèi)的實(shí)例
- Python求解正態(tài)分布置信區(qū)間教程
- Python 日期區(qū)間處理 (本周本月上周上月...)
- Python 數(shù)值區(qū)間處理_對(duì)interval 庫(kù)的快速入門詳解