diff options
Diffstat (limited to 'utils/utils_times/__init__.py')
-rw-r--r-- | utils/utils_times/__init__.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/utils/utils_times/__init__.py b/utils/utils_times/__init__.py deleted file mode 100644 index dc65642..0000000 --- a/utils/utils_times/__init__.py +++ /dev/null @@ -1,27 +0,0 @@ -#!/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
\ No newline at end of file |