针对python3+进行转义 import html r = html.unescape('Suzy & John') print(r)#结果:Suzy & John ...
分类:
编程语言 时间:
2020-05-11 13:16:46
阅读次数:
59
1.情景展示 在plsql中如何使用dbms_output输出执行结果? 如上图所示,运行后报错:ora-00922 2.原因分析 set serveroutput on 语句的作用是:打开Oracle自带的输出方法dbms_output,在执行以后,使用dbms_output方法可以输出信息。 但 ...
分类:
数据库 时间:
2020-05-11 11:43:57
阅读次数:
468
问题描述 重新编写函数squeeze(s1,s2),将字符串s1中任何与字符串s2中字符匹配的字符都删除。 Write an alternate version of squeeze(s1,s2) that deletes each character in the string s1 that m ...
分类:
编程语言 时间:
2020-05-10 17:03:44
阅读次数:
69
db_name: 实例启动最小参数需求,在参数文件中,通常需要最少的参数是 db_name ,设置了这个参数之后,数据库实例就可以启动. SID -->System IDentifier 的缩写ORACLE_SID --> 就是 Oracle System IDentifierOracle 的实例 ...
分类:
数据库 时间:
2020-05-10 16:39:45
阅读次数:
66
解决方案: class Gra(object): def __init__(self): self.order = [] self.neighboor = {} self.visit = {} def _dfs_visit_(self, u): if u in self.neighboor: for ...
分类:
编程语言 时间:
2020-05-10 12:47:05
阅读次数:
58
概述 垃圾收集 Garbage Collection 通常被称为“GC”,它诞生于1960年 MIT 的 Lisp 语言,经过半个多世纪,目前已经十分成熟了。 jvm 中,程序计数器、虚拟机栈、本地方法栈都是随线程而生随线程而灭,栈帧随着方法的进入和退出做入栈和出栈操作,实现了自动的内存清理,因此, ...
分类:
编程语言 时间:
2020-05-10 11:23:11
阅读次数:
81
https://www.jianshu.com/p/5d999a668e79 import subprocess print subprocess.call("service apache2 status", shell=True) import os print os.system("servic ...
分类:
系统相关 时间:
2020-05-09 21:42:19
阅读次数:
75
我们可以用2*1的小矩形横着或者竖着去覆盖更大的矩形。请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法? 比如n=3时,2*3的矩形块有3种覆盖方法 思路:n=0,f=0 n=1,f=1 n=2,f=2 n=3,f=3 n=4,f=5 当n>2时,其实就是斐波那契数列,需要单 ...
分类:
其他好文 时间:
2020-05-09 21:40:32
阅读次数:
70
一只青蛙一次可以跳上1级台阶,也可以跳上2级……它也可以跳上n级。求该青蛙跳上一个n级的台阶总共有多少种跳法。 思路:n=1,f=1 n=2,f=2(1;2) n=3,f=4(111;12;21;3) n=4,f=5(11111,121,112,211,4,13,31) 由规律可知n=k(k>1)时 ...
分类:
其他好文 时间:
2020-05-09 21:18:07
阅读次数:
77
AC代码: #include<bits/stdc++.h> #define ll long long #define endl '\n' #define mem(a,b) memset(a,b,sizeof(a)) #define IO ios::sync_with_stdio(false);cin ...
分类:
其他好文 时间:
2020-05-09 21:06:35
阅读次数:
60