import os,sysimport csvfile_folder = sys.argv[1]# file_folder = r"/Users/vito/Desktop/0120 "final_info={}txt_path_list=[]# 如需要处理更多log信息,在下面三行最后面添加; 如果 ...
分类:
其他好文 时间:
2021-03-15 11:04:03
阅读次数:
0
功能模块分析 1.首页(菜单功能)2.添加学生信息3.删除学生信息4.显示学生信息5.修改学生信息6.按照学生年龄排序 代码如下: def main(): while True: printmenu() #打印菜单 number = int(input("请输入功能对应的数字:")) if numb ...
分类:
编程语言 时间:
2021-03-11 20:36:31
阅读次数:
0
1、目前工作上有一堆的ip地址,ip是ok的,但是需要找出来不在这里面的其他ip import os a = list() with open('ip.txt','r') as f: #print(f.readlines()) for line in f.readlines(): a.append( ...
分类:
其他好文 时间:
2021-03-05 13:28:22
阅读次数:
0
import time class Timer(object): def __init__(self): self.tic() self.elapses = [] def tic(self): self.tstart = time.time() def toc(self, reset=True, m ...
分类:
其他好文 时间:
2021-03-04 13:07:52
阅读次数:
0
一个简单的主入口是这样滴: import sys sys.path.append('..') import torch from pytorch_pretrained_bert import BertTokenizer, BertModel, BertForMaskedLM # Load pre-t ...
分类:
其他好文 时间:
2021-03-03 12:08:49
阅读次数:
0
1.创建超级管理员账户,超级管理员必须在admin下创建,这个超级管理员账户可以访问所有的数据库 use admin db.createUser({ user:'admin', pwd: '123456', roles:[{role:'root', db: 'admin'}] }) 2.修改Mong ...
分类:
数据库 时间:
2021-02-23 14:02:37
阅读次数:
0
NX9+VS2012 #include <uf.h> #include <uf_ui.h> #include <uf_ui_ont.h> #include <uf_cambnd.h> UF_initialize(); //获取当前加工导航器选中的对象数量和TAG int count = 0; tag ...
分类:
移动开发 时间:
2021-02-20 12:38:00
阅读次数:
0
NX9+VS2012 #include <uf.h> #include <uf_ui.h> #include <uf_ui_ont.h> #include <uf_camgeom.h> static int select_filter_proc_fn(tag_t object, int type[3 ...
分类:
移动开发 时间:
2021-02-20 12:37:26
阅读次数:
0
import numpy as np df = np.arange(0,210,10) s = map ( str ,df) s2 = [] for i in s: s2.append(i) print(s2) 结果: ['0', '10', '20', '30', '40', '50', '60' ...
分类:
其他好文 时间:
2021-02-20 12:04:01
阅读次数:
0
# Author:Winter Liu is coming!import cv2 as cvimport numpy as npimport pytesseract # 预处理,高斯滤波(用处不大),4次开操作# 过滤轮廓唯一def contour_demo(img): gray = cv.cvtC ...
分类:
编程语言 时间:
2021-02-17 14:01:12
阅读次数:
0