summaryrefslogtreecommitdiff
path: root/ATRI/utils/utils_times/__init__.py
blob: 1f65fc6377b4bdb76820a864f0f4279007d91610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
'''
@File    :   __init__.py
@Time    :   2020/10/31 19:36:49
@Author  :   Kyomotoi
@Contact :   [email protected]
@Github  :   https://github.com/Kyomotoi
@License :   Copyright © 2018-2020 Kyomotoi, All Rights Reserved.
'''
__author__ = 'kyomotoi'

import warnings


def countX(lst: list, aim) -> int:
    '''
    检查某列表某元素出现次数

    :return: int
    '''
    warnings.simplefilter('ignore', ResourceWarning)
    count = 0
    for ele in lst:
        if (ele == aim):
            count = count + 1
    return count