码迷,mamicode.com
首页 >  
搜索关键字:raise    ( 709个结果
人生苦短_我用Python_Try_Exception异常捕捉_007
# coding=utf-8 ''' request+try__异常处理 ''' import requests class HttpRequests: def __init__(self, url, payload=None): self.url = url self.payload = payl... ...
分类:编程语言   时间:2018-06-08 00:33:57    阅读次数:241
python异常处理--try except else raise finally
写程序时遇到异常情况,程序可能无法正常运行。此时就需要引入异常处理 1.try ...except try 后面写正常运行的程序代码,except即为异常情况 结果显示如下,异常行为的名称为(division by zero) 2.try ....except...else 语句,当没有异常发生时, ...
分类:编程语言   时间:2018-06-06 21:41:18    阅读次数:143
Django的admin.py注册流程
通常创建一个Django项目的时候,在Django的配置文件settings.py中,都会有下面的这段配置: INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes' ...
分类:其他好文   时间:2018-06-05 00:40:48    阅读次数:146
tsne 绘图(CC2)
tsne ...
分类:其他好文   时间:2018-05-31 13:43:37    阅读次数:243
tf.constant
tf.constant Creates a constant tensor. The resulting tensor is populated with values of type dtype, as specified by arguments value and (optionally) s ...
分类:其他好文   时间:2018-05-31 02:31:59    阅读次数:184
finally小知识点
finally小知识 我们都知道无论try语句中是否抛出异常,finally中的语句一定会被执行。我们来看下面的例子: try: f = open("/tmp/output", "w") f.write("hello") #raise Exception("something wrong") fin ...
分类:其他好文   时间:2018-05-28 22:39:58    阅读次数:242
游戏 猜拳游戏
import random#猜拳游戏"""首先用户需求分析:猜拳游戏,石头、剪刀、布用户猜三次猜不到用户可以选择游戏退出,或继续游戏1.人与机器人猜拳用字典存贮人的信息{1:‘石头’,2:'剪刀',3:'布'}猜拳的结果:人赢的概率:‘石头’ if _ =='剪刀'and"""i = 0while ...
分类:其他好文   时间:2018-05-28 12:42:05    阅读次数:168
Error【0004】:virt-manager打开报错
1. 报错1.1 错误背景1.1 错误提示1.2 错误图示2. 分析3. 定位4. 解决5. 总结 1. 报错 1.1 错误背景 欲通过命令行,执行virt-manager名,来打开图像界面,执行命令报错。 1.1 错误提示 报错信息: raise gtk_error RuntimeError: c ...
分类:其他好文   时间:2018-05-27 13:34:56    阅读次数:235
爬虫系列之淘宝商品爬取
1 import re 2 import requests 3 4 def getHTMLText(url): 5 try: 6 r = requests.get(url, timeout = 30) 7 r.raise_for_status() 8 r.encoding = r.apparent_... ...
分类:其他好文   时间:2018-05-25 19:35:41    阅读次数:155
Python2.x与3??.x版本区别
中文原文:http://www.runoob.com/python/python-2x-3x.html Unicode Python 2 有 ASCII str() 类型,unicode() 是单独的,不是 byte 类型。 现在, 在 Python 3,我们最终有了 Unicode (utf-8) ...
分类:编程语言   时间:2018-05-25 11:05:35    阅读次数:164
709条   上一页 1 ... 41 42 43 44 45 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!