第一种 python -m venv project-env #创建一个名为project-env环境 source project-envbin/bin/activate #进入python虚拟环境 deactivate #退出python虚拟环境 第二种 pip install virtuale ...
分类:
编程语言 时间:
2021-06-13 09:36:42
阅读次数:
0
一、说在前面 1、使用工具:py2neo ,官方操作文档 :https://py2neo.org/v4/index.html 2、还包括一些neo4j的命令操作 二、案例说明 1、数据展示 2、这个案例主要是读取Excel中的结构化数据购买方、销售方(节点)和金额(边),并实现在图中创建实体 三、相 ...
分类:
编程语言 时间:
2021-06-13 09:30:36
阅读次数:
0
import turtle turtle.setup(800,600) turtle.pencolor('pink') for i in range(4): for i in range(2): turtle.circle(80,90) turtle.left(90) turtle.right(90 ...
分类:
编程语言 时间:
2021-06-13 09:20:06
阅读次数:
0
1)取异或,然后计算1的个数 class Solution: def hammingDistance(self, x: int, y: int) -> int: t = x^y count = 0 while t: count += 1 t = t& t-1 return count ...
分类:
编程语言 时间:
2021-06-11 19:07:12
阅读次数:
0
#python之模块py_compile用法(将py文件转换为pyc文件);二进制文件,是由py文件经过编译后,生成的文件. #办法一: import py_compile #加r前缀进行转义 py_compile.compile(r'D:\test.py')#py文件完整的路径. 办法二: #cm ...
分类:
编程语言 时间:
2021-06-11 19:06:54
阅读次数:
0
打开文件 with open with open(file_name,access_mode,encoding) for line in f.readlines(): print(line.strip()) #调用read()会一次性读取文件的全部内容,如果文件有10G,内存就爆了,所以,要保险起见 ...
分类:
编程语言 时间:
2021-06-11 18:52:26
阅读次数:
0
本文首发于:行者AI 我们在做自动化测试的时候,大家都是希望自己写的代码越简洁越好,代码重复量越少越好。那么,我们可以考虑将request的请求类型(如:Get、Post、Delect请求)都封装起来。这样,我们在编写用例的时候就可以直接进行请求了。 1. 源码分析 我们先来看一下Get、Post、 ...
分类:
编程语言 时间:
2021-06-11 18:51:28
阅读次数:
0
yaml文件读取: def read_yaml(): with open("config.yaml", encoding='utf-8') as f: data = yaml.load(f.read(), Loader=yaml.FullLoader) print(data) ...
分类:
编程语言 时间:
2021-06-11 18:50:54
阅读次数:
0
最近在做软件杯的项目,想做一个人脸识别、对比的登录,当相似度超过某个数值时通过登录验证。 json数据: {'error_code': 0, 'error_msg': 'SUCCESS', 'log_id': 9975359915559, 'timestamp': 1623377294, 'cach ...
分类:
编程语言 时间:
2021-06-11 18:36:07
阅读次数:
0
使用Flask+uwsgi+Nginx部署Flask正式环境 环境准备 在开始正式讲解之前,我们将首先进行环境准备。 Step1:安装Python,pip以及nginx: sudo apt-get update sudo apt-get install python-pip python-dev n ...
分类:
其他好文 时间:
2021-06-11 18:35:20
阅读次数:
0