捕获异常 1.读写文件的时候有很多容易出错的地方;如果你要打开的文件不存在,就会得到一个IOerror: >>> find = open('bad_file.txt') Traceback (most recent call last): File "<stdin>", line 1, in <mo ...
分类:
编程语言 时间:
2020-07-01 20:20:46
阅读次数:
82
virtualenv -p /usr/local/bin/python2.7 2env Running virtualenv with interpreter /usr/local/bin/python2.7Traceback (most recent call last): File "/usr/ ...
分类:
编程语言 时间:
2020-07-01 19:57:57
阅读次数:
64
import shelve a = shelve.open('1') b = [1,2,3] a['b'] = b a.close()a['b'] Traceback (most recent call last):File "C:\Users\Administrator\AppData\Local ...
分类:
其他好文 时间:
2020-06-30 17:22:01
阅读次数:
66
变量赋值 x,y,z = 1,2,3 灵活使用,可以减少代码量 key,value = dict.popitem() *星号的使用可以代表多个值 #正常 x,y,z = 1,2,3 #参数列表数目不匹配 x,y,z = 1,2,3,4Traceback (most recent call last) ...
分类:
编程语言 时间:
2020-06-30 11:20:18
阅读次数:
65
tuple // 一项数组的项数已知,其中每一项的类型也已知 const arr: [string,number,string] = ['1',1,'1'] unknow any // any类型 变量可以进行任意赋值,实例化,函数执行 // unknown类型 只允许赋值,不允许实例化,函数执行 ...
分类:
其他好文 时间:
2020-06-29 17:18:55
阅读次数:
54
1、cobbler check失败 httpd does not appear to be running and proxying cobbler, or SELinux is in the way. Original traceback: Traceback (most recent call ...
分类:
其他好文 时间:
2020-06-28 22:55:20
阅读次数:
118
Pop Sequence:: Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, ..., N and pop randomly. You are supposed to te ...
分类:
其他好文 时间:
2020-06-27 13:25:15
阅读次数:
53
5.10 MVC自动配置原理 Spring MVC Auto-configuration Spring Boot provides auto-configuration for Spring MVC that works well with most applications. The auto-c ...
分类:
编程语言 时间:
2020-06-25 15:45:40
阅读次数:
104
上次使用Selenium+Python还是好几个月前了 今天想再用一下,结果写个打开网站的小demo报错,报错如下: 检查了一下,查看报错日志,应该是chrome版本和driver版本不一致导致的。 于是要重新下载对应的新的driver版本。 1、查看自己chrome版本如下: 2、安装webdri ...
分类:
编程语言 时间:
2020-06-24 16:32:02
阅读次数:
77
count()函数描述:用于统计字符串李某个字符出现的次数。可选参数为在字符串搜索的开始和结束位置语法:str.count(sub,start=0,end=len(string))返回值:子字符串在字符串中出现的次数 str='www.runoob.com'sub='o'print('str.cou ...
分类:
其他好文 时间:
2020-06-22 18:45:40
阅读次数:
76