1.提示“python找不到或者环境不对” npm config set python C:\Python27\python.exe 2.执行npm rebuild node-sass 重构一下3.再重新执行npm install就OK啦 4.输入: npm install @ionic/app-s ...
分类:
其他好文 时间:
2021-06-13 09:42:49
阅读次数:
0
第一种 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
1、引入依赖 <!--邮件--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> 2、配置地址 sprin ...
分类:
编程语言 时间:
2021-06-11 18:37:22
阅读次数:
0