摘要:
import bisect L = [1,3,3,5,7,9] x = 30 ##在L中查找x,x存在时返回x左侧的位置 x不存在返回应该插入的位置 x_insert_point = bisect.bisect_left(L,x) print(x_insert_point) #在L中查找x,x存在时返回x右侧的位置,x不存在返回应该插入的位置 x_insert_point = bisect... 阅读全文
摘要:
1 import numbers 2 from collections import abc 3 class Group: 4 #支持切片操作 5 def __init__(self, group_name, company_name, staffs): 6 self.group_name = group_name 7 self.co... 阅读全文