一:什么是异常 异常是程序发生错误的信号,程序一旦出错就会抛出异常,程序的运行随即终止 print('start....') [1,2,3][1000] print('stop...') # IndexError: list index out of range 异常处理的三个特征: # 异常的追踪 ...
分类:
其他好文 时间:
2020-04-17 09:51:39
阅读次数:
62
1.索引异常 IndexError: list index out of range 2.语法异常 SyntaxError 3.缩进异常 IndentationError: unexpected indent 4.try 语句完整形态:try except else finally 5.try 内的 ...
分类:
其他好文 时间:
2020-04-12 12:15:41
阅读次数:
73
语法错误 所谓语法错误,也就是你写的代码不符合编程规范,无法被识别与执行,比如下面这个例子: If 语句漏掉了冒号,不符合 Python 的语法规范,所以程序就会报错 。 异常 异常则是指程序的语法正确,也可以被执行,但在执行过程中遇到了错误,抛出了异常,比如下面的 3 个例子: 异常列表 "参考文 ...
分类:
编程语言 时间:
2020-04-04 23:01:34
阅读次数:
142
一:错误捕获联系例子 #codeing=utf-8 def test_index(string,index): print string[index]; str="thiistest"; num=3; try:#尝试运行 test_index(str,num); except IndexError: ...
分类:
编程语言 时间:
2020-02-29 19:00:49
阅读次数:
76
1. c# 索引器(indexer) using System; using System.IO; namespace IO { class Program { private string[] nameList = new string[10]; static void Main(string[] ...
分类:
Web程序 时间:
2020-02-04 15:49:04
阅读次数:
85
1.AssertionError 该异常在assert()语句运行失败时输出 2.AttributeError 该异常在参考或设置属性失败时输出 eg:class Gs: pass g = Gs() g.add 此代码中引用了该类所没有的属性 4.ImportError 该异常是引用了该计算机中所没 ...
分类:
编程语言 时间:
2020-01-29 21:31:49
阅读次数:
63
【学习资料】 > 在线文档 官方文档:https://docs.microsoft.com/zh-cn/dotnet/csharp/ 菜鸟教程(高级教程):https://www.runoob.com/csharp/csharp-tutorial.html > 视频教程 腾讯学院、Siki学院 > ...
分类:
编程语言 时间:
2020-01-28 23:29:59
阅读次数:
116
碰到的问题: 1.list 越界 查询后加了个 try: except IndexError: pass 一个简单的爬虫程序 1 import requests 2 from lxml import etree 3 import csv 4 import os 5 6 7 #创建一个csv文件 如果 ...
分类:
其他好文 时间:
2020-01-04 16:11:13
阅读次数:
78
索引符(indexer)是一种特殊的属性。可以添加到一个类中,以提供类似于数组的访问。 我们举一个例子: public class Animals:CollectionBase//继承集合基类,他是一个抽象类,包含接口 IEnumerable、ICollection 和 IList { ... pu ...
分类:
其他好文 时间:
2020-01-04 12:25:33
阅读次数:
89
栈是一种后进先出的数据结构 ,栈满时不能入栈,栈空时不能出栈。 python代码实现: class Stack(object): def __init__(self, limit=10): self.stack = [] #存放元素 self.limit = limit #栈容量极限 def pus ...
分类:
其他好文 时间:
2020-01-01 18:52:19
阅读次数:
68