Python 各类小方法(个人用)

python3 自定义排序

3已经弃用了2中的cmp

https://blog.csdn.net/u012436149/article/details/79952975


def cmp_ignore_case(s1, s2):
    s1 = s1.lower()
    s2 = s2.lower()
    if s1 < s2:
        return -1
    if s1 > s2:
        return 1
    return 0
print sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case)

 

 

 

未整理

python--可以通过map里value是函数名,然后下面map[key](函数的参数)
    self._decision_map[time_section_id](battle_state)
       def _send_troops(self, battle_state):

battle_state.enemy_camp_id = 2 if our_camp_id == 1 else 1

coloerprint 有颜色的输出

回调函数???

在__init__中声明的变量,会存到实例的__dict__中

random.sample(l, 5)从一个list(切片)随机选5个作为list返回

if 一个list,如果是空list则不进入

python语法中, / 是除法,例如:2/3 = 0.6666。而//是表示向下取整的除法,例如3//2=1,6.0//4 = 1。

你可能感兴趣的:(python,python)