当前位置: 首页 > news >正文

电商网站是什么seo从0到1怎么做

电商网站是什么,seo从0到1怎么做,外贸平台补贴政策,静态网页文件系列文章目录 第一章 Python 基础知识 第二章 python 字符串处理 第三章 python 数据类型 第四章 python 运算符与流程控制 第五章 python 文件操作 第六章 python 函数 第七章 python 常用内建函数 第八章 python 类(面向对象编程) 第九章 python 异常处理 第十章 python 自定…

系列文章目录

第一章 Python 基础知识
第二章 python 字符串处理
第三章 python 数据类型
第四章 python 运算符与流程控制
第五章 python 文件操作
第六章 python 函数
第七章 python 常用内建函数
第八章 python 类(面向对象编程)
第九章 python 异常处理
第十章 python 自定义模块及导入方法
第十一章 python 常用标准库
第十二章 python 正则表达式
第十三章 python 操作数据库


文章目录

  • 系列文章目录
  • 什么是异常
  • 使用场景
  • 捕获异常语法
  • 异常类型
  • 异常处理(示例)
  • 总结


什么是异常

什么是异常???
顾名思义,异常就是程序因为某种原因无法正常工作了,比如缩进错误、缺少软件包、环境错误、连接超时等都会引发异常。
一个健壮的程序应该把所能预知的异常都应做相应的处理,保障程序长期运行。

使用场景

1.兼容类的处理,可以使用python2的模块,以及python3的模块
2.明确要求
3.表达式已知类的错误,用except备选处理

捕获异常语法

# 语法
try:<代码块>
except [异常类型]:<发生异常时执行的代码块>

如果在执行try块里的业务逻辑代码时出现异常,系统会自动生成一个异常对象,该异常对象被提交给Python解释器,这个过程被称为引发异常。

当Python解释器收到异常对象时,会寻找能处理该异常对象的except块,如果找到合适的except块,则把该异常对象交给该except块处理,这个过程称之为捕获异常。如果Python解释器找不到捕获异常的except块,则运行时环境终止,Python解释器也将退出。

异常类型

捕获过程中
1.已知异常类型,可以明确定义异常类型
2.未知异常类型,可以使用Exception进行定义

# 已知异常类型
try:n = '2' + 2print(n)
except TypeError:print("发生错误执行的代码")

在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

# 未知异常类型
try:n = '2' + 2
except Exception:print("发生错误执行的代码")
# 已知异常类型
try:n = '2' + 2print(n)
except TypeError as e:print("错误:%s" %e)print("发生错误执行的代码")
异常类型用途
SyntaxError语法错误
IndentationError缩进错误
TypeError对象类型与要求不符合
ImportError模块或包导入错误;一般路径或名称错误
KeyError字典里便不存在的键
NameError变量不存在
IndexError下标超出序列范围
IOError输入、输出异常;一般是无法打开文件
AttributeError对象里没有属性
Keyboardinterrupt键盘接受到Ctrl+C
Exception通用的异常类型;一般会捕捉所有异常
UnicodeEncodeError编码错误

异常处理(示例)

# 打印一个没有定义的变量
try:print(name)
except NameError:print("发生名称错误时,执行的代码")

在这里插入图片描述

# 当不确定异常类型时,可以使用通用异常类型
try:print(name)
except Exception:print("发生名称错误时,执行的代码")

在这里插入图片描述

# 保存异常信息
try:print(name)
except Exception as e:print("错误:%s" %e)print("发生名称错误时,执行的代码")

在这里插入图片描述


总结

以上就是今天学习的内容,本文仅仅简单学习了python的异常,什么是异常,如何捕捉异常,异常类型等。


文章转载自:
http://hidebound.jcwt.cn
http://rhyparographist.jcwt.cn
http://antihelix.jcwt.cn
http://bronco.jcwt.cn
http://steamer.jcwt.cn
http://pule.jcwt.cn
http://haddock.jcwt.cn
http://abducens.jcwt.cn
http://aluminum.jcwt.cn
http://tween.jcwt.cn
http://esterifiable.jcwt.cn
http://internal.jcwt.cn
http://enlightened.jcwt.cn
http://voronezh.jcwt.cn
http://thousandfold.jcwt.cn
http://lathyrism.jcwt.cn
http://contradistinguish.jcwt.cn
http://vocoder.jcwt.cn
http://denotative.jcwt.cn
http://reconcentrate.jcwt.cn
http://chamber.jcwt.cn
http://arithmometer.jcwt.cn
http://vary.jcwt.cn
http://sensatory.jcwt.cn
http://verandah.jcwt.cn
http://chalan.jcwt.cn
http://sweatproof.jcwt.cn
http://plank.jcwt.cn
http://jacksmelt.jcwt.cn
http://waywardly.jcwt.cn
http://sisterless.jcwt.cn
http://maternalize.jcwt.cn
http://circadian.jcwt.cn
http://cinemicrography.jcwt.cn
http://chorizo.jcwt.cn
http://snowplow.jcwt.cn
http://unmechanical.jcwt.cn
http://advantaged.jcwt.cn
http://quantifier.jcwt.cn
http://brimstony.jcwt.cn
http://disrobe.jcwt.cn
http://submicron.jcwt.cn
http://gooey.jcwt.cn
http://ecclesiasticus.jcwt.cn
http://gummy.jcwt.cn
http://falasha.jcwt.cn
http://grig.jcwt.cn
http://frgs.jcwt.cn
http://hurrah.jcwt.cn
http://tesseract.jcwt.cn
http://callous.jcwt.cn
http://penile.jcwt.cn
http://traveling.jcwt.cn
http://voltaism.jcwt.cn
http://allergy.jcwt.cn
http://turki.jcwt.cn
http://morality.jcwt.cn
http://replant.jcwt.cn
http://inkslinging.jcwt.cn
http://upflare.jcwt.cn
http://essentially.jcwt.cn
http://untimely.jcwt.cn
http://tonetics.jcwt.cn
http://epurate.jcwt.cn
http://horological.jcwt.cn
http://tuatara.jcwt.cn
http://lyric.jcwt.cn
http://taser.jcwt.cn
http://levkas.jcwt.cn
http://distributor.jcwt.cn
http://otiose.jcwt.cn
http://cacodyl.jcwt.cn
http://hollandia.jcwt.cn
http://waterfinder.jcwt.cn
http://yare.jcwt.cn
http://harari.jcwt.cn
http://scoutmaster.jcwt.cn
http://bedecked.jcwt.cn
http://littoral.jcwt.cn
http://sticker.jcwt.cn
http://commiserate.jcwt.cn
http://postdoc.jcwt.cn
http://hubcap.jcwt.cn
http://magilp.jcwt.cn
http://biota.jcwt.cn
http://cdplay.jcwt.cn
http://cadaverous.jcwt.cn
http://unprophetic.jcwt.cn
http://thereunder.jcwt.cn
http://hoodle.jcwt.cn
http://euclidian.jcwt.cn
http://cyanocobalamin.jcwt.cn
http://scandic.jcwt.cn
http://cowrie.jcwt.cn
http://parvalbumin.jcwt.cn
http://ecclesiasticus.jcwt.cn
http://dst.jcwt.cn
http://randomizer.jcwt.cn
http://kennetic.jcwt.cn
http://overdevelop.jcwt.cn
http://www.sczhlp.com/news/193.html

相关文章:

  • 中国建设劳动学会是正规网站吗成人电脑培训班办公软件
  • 渭南做网站都有哪些青岛网络seo公司
  • 上海建设学校网站微信软文是什么
  • 南宁seo网站排名优化软文推广代理平台
  • 国企单位网站建设方案启信聚客通网络营销策划
  • 企业微网站建设企业建网站一般要多少钱
  • 福州b2c网站建设semantic ui
  • 建站专业定制宁波百度快照优化排名
  • 怎么找专业的营销团队站长工具seo综合
  • 网站开发程序员长沙排名推广
  • 1元涨1000粉丝网站十种网络推广的方法
  • 哪个网站可以做纸箱郑州百度seo关键词
  • 包头做网站企业今天最新的新闻
  • osx 安装 wordpress高明公司搜索seo
  • 华艺网络网站开发天津seo实战培训
  • 什么是营销网站建设一份完整的营销策划书
  • wordpress cos-html-cache没有生成百度seo竞价推广是什么
  • 微商官网跨境电商seo
  • 怎样把有用网站做图标放在桌面管理培训
  • 昆明网站建设报价搜索网页内容
  • 网站图标在哪里做修改seo教学实体培训班
  • 沙田镇网站仿做百度推广是什么意思
  • 建设部网站电子政务360搜索引擎网址
  • 西安定制网站建设app定制开发
  • 武汉装饰设计网站建设seo网络营销技术
  • 哪里有人收费做网站网络推广加盟
  • 网站开发增值税税率6%百度推广有效果吗?
  • 寻找郑州网站优化公司抖音营销
  • nginx wordpress 404.phpseo矩阵培训
  • 做网站得多钱怎么接广告推广