From 9bf222471d34cb756a4878b103ec82c6c4bfb191 Mon Sep 17 00:00:00 2001 From: Kyomotoi <1172294279@qq.com> Date: Sun, 20 Dec 2020 17:14:41 +0800 Subject: [Update] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 创建项目结构 --- ATRI/utils/utils_times/__init__.py | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 ATRI/utils/utils_times/__init__.py (limited to 'ATRI/utils/utils_times') diff --git a/ATRI/utils/utils_times/__init__.py b/ATRI/utils/utils_times/__init__.py deleted file mode 100644 index 1f65fc6..0000000 --- a/ATRI/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 : kyomotoiowo@gmail.com -@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 -- cgit v1.2.3