Django中生成随机验证码 1、html中a标签的设置 1 <img src="/get_validcode_img/" alt=""> 2、views中的get2、views中的getvalidcode_img设置 导入文件 1 import json 2 import os 3 import ...
分类:
其他好文 时间:
2020-04-05 00:15:27
阅读次数:
85
|buf1-buf2|如果恒在[m,n]这个区间,(0<m<n) 就是p1向buf1写数据,比p2写数据的次数可以少,但最少不超过m次;也可以多,但做多不能超过n次。反之也成立。 所以: -m<=buf1-buf2<=n or -m<=buf2-buf1<=n.(ps:根据对称性哦2333) ...
分类:
其他好文 时间:
2020-04-04 20:53:13
阅读次数:
48
在run_all.py中编写如下脚本: # cording:utf-8 import unittest import os from common import HTMLTestRunner_cn #os.path.dirname: 获取当前文件所在的文件夹路径。 os.path.realpath( ...
分类:
其他好文 时间:
2020-04-04 18:44:29
阅读次数:
71
import tensorflow as tf import os import tarfile import requests #模型下载地址 inception_pretrain_model_url='http://download.tensorflow.org/models/image/ima ...
分类:
其他好文 时间:
2020-04-04 18:34:40
阅读次数:
76
1 # -*- coding=utf-8 -*- 2 #curl公共程序 3 #张明伟 20200331 4 import pycurl 5 from io import BytesIO 6 import datetime,time,os 7 import logging 8 import json ...
分类:
Web程序 时间:
2020-04-04 11:50:50
阅读次数:
68
一、系统环境 1.1、Centos版本信息 [root@Centos8Node1 ~]# cat /etc/os-release NAME="CentOS Linux" VERSION="8 (Core)" ID="centos" ID_LIKE="rhel fedora" VERSION_ID=" ...
分类:
其他好文 时间:
2020-04-04 09:42:34
阅读次数:
795
import os, sysdef genDir(): base = 'E:/py doc/data/' i = 0 name=['ZERO','ONE','TWO','THREE','FOUR','FIVE','SIX','SEVEN','EIGHT','NINE'] for j in range ...
分类:
编程语言 时间:
2020-04-04 09:23:26
阅读次数:
108
姓名:肖斯凯 学号:201821121015 班级:计算1811 1. 编写程序 2. 打印进程树 3. 解读进程相关信息 (1) ps -ef UID:拥有者 PID:进程ID PPID:父进程的ID C:cpu资源的占用比 STIME:系统启动时间 TTY:进程在那个终端上运行,若与终端无关,则 ...
分类:
系统相关 时间:
2020-04-03 22:04:52
阅读次数:
103
姓名:巫艳珍 学号:201821121034 班级:计算1812 1. 编写程序 在服务器上用VIM编辑器编写一个程序:一个进程创建(fork)两个子进程。给出源代码: #include<sys/types.h> #include<stdio.h> #include<unistd.h> int ma ...
分类:
系统相关 时间:
2020-04-03 13:46:18
阅读次数:
74
excel里面的目录是这样的: 生成的目录是这样的 代码如下: import os, sys import pandas as pd path = 'C:/Users/17360/Desktop/cy/' df = pd.read_excel(r'C:\Users\17360\Desktop\tes ...
分类:
其他好文 时间:
2020-04-02 22:38:18
阅读次数:
78