From 7e92f3fd36c72584e7e9c8d4b9d5b055d52755e6 Mon Sep 17 00:00:00 2001 From: Kyomotoi <1172294279@qq.com> Date: Sat, 31 Oct 2020 20:02:00 +0800 Subject: [Update] --- utils/utils_times/__init__.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 utils/utils_times/__init__.py (limited to 'utils/utils_times') 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 : kyomotoiowo@gmail.com +@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 -- cgit v1.2.3