Leetcode.345 Reverse Vowels of a String Write a function that takes a string as input and reverse only the vowels of a string. Example 1: Input: "hell ...
分类:
其他好文 时间:
2020-08-06 09:30:08
阅读次数:
64
<!doctype html>promise promise原因 简单来说 就是为了解决callback hell 简单来看一个回调的例子 ?x 1 let fs = require('fs') 2 fs.readFile('./a.txt','utf8',function(err,data){ 3 ...
分类:
其他好文 时间:
2020-07-24 19:10:55
阅读次数:
101
pip安装 pip install pytest-html 编写脚本 import pytest class TestClass(object): def test_one(self): x = "this" assert 'h' in x def test_two(self): x = "hell ...
分类:
其他好文 时间:
2020-07-23 16:50:29
阅读次数:
121
一、使用url_for别名方式 之前使用@app.route这个装饰器来把视图函数和url绑定。而且可以通过url_for('hello_world')反转得到url '/' @app.route('/') def hell_world(): return 'hello world' 实际上可以给@ ...
分类:
移动开发 时间:
2020-07-21 14:24:07
阅读次数:
112
2019个嵌入式市场研究,持续的C/C++优势 2019 Embedded Markets Study reflects emerging technologies, continued C/C++ dominance 根据Eee Times和嵌入式技术在今年早些时候发布的2019个嵌入式市场研究, ...
分类:
编程语言 时间:
2020-07-10 10:03:41
阅读次数:
94
1. String.trim() trim()是去掉首尾空格 2.str.replace(" ", ""); 去掉所有空格,包括首尾、中间 String str = " hell o "; String str2 = str.replaceAll(" ", ""); System.out.print ...
分类:
编程语言 时间:
2020-07-02 10:45:15
阅读次数:
60
'''文件读取'''# python通过内置open()方法打开文件,若文件存在,则打开并进行读取操作,# 否则创建文件,相关参数有w, w+, a, a+if "hello.txt" is True: # 文件打开时,指定编码方式 file = open("hell.txt",'r',encodi ...
分类:
编程语言 时间:
2020-07-01 09:38:08
阅读次数:
95
Docker制作Base Image Base Image:基于系统的基础镜像 1、编辑Dockerfile vi Dockerfile 2、写入一下内容 FROM ubuntu CMD echo "hello docker" 3、编译镜像 docker build -t guhaohao/hell ...
分类:
其他好文 时间:
2020-06-25 19:36:32
阅读次数:
89
https://blog.quantinsti.com/market-making/ Over the past few years, you must have witnessed a sharp positive shift in the financial markets, mainly be ...
分类:
其他好文 时间:
2020-06-16 18:20:05
阅读次数:
58
1、什么是javaScript “Javascript(JS)是一种脚本语言,主要用于Web。它用于增强HTML页面,通常可以嵌入HTML代码中。JavaScript是一种解释型语言。因此,它不需要编译 2、快速入门 2.1、引入javaScript 内部标签 <script>alert("Hell ...
分类:
编程语言 时间:
2020-05-22 19:19:30
阅读次数:
76