diff options
Diffstat (limited to 'utils/utils_times')
-rw-r--r-- | utils/utils_times/__init__.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/utils/utils_times/__init__.py b/utils/utils_times/__init__.py new file mode 100644 index 0000000..7a53c1a --- /dev/null +++ b/utils/utils_times/__init__.py @@ -0,0 +1,21 @@ +#!/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, x): + warnings.simplefilter('ignore', ResourceWarning) + count = 0 + for ele in lst: + if (ele == x): + count = count + 1 + return count
\ No newline at end of file |