图解python | pass语句

  • 作者:韩信子@ShowMeAI
  • 教程地址:www.showmeai.tech/tutorials/5…
  • 本文地址:www.showmeai.tech/article-det…
  • 声明:版权所有,转载请联系平台与作者并注明出处

Python-pass句子

Python pass 是空句子,是为了坚持程序结构的完整性。

pass 不做任何事情,一般用做占位句子。

Python 言语 pass 句子语法格局如下:

pass

图解python | pass语句

下面是代码示例(代码能够在在线python3环境中运转):

for letter in 'ItIsShowMeAI':
   if letter == 'h':
      pass
      print('这是 pass 块')
   print('当时字母 :', letter)
print("完结!")

以上实例履行成果:

当时字母 : I
当时字母 : t
当时字母 : I
当时字母 : s
当时字母 : S
这是 pass 块
当时字母 : h
当时字母 : o
当时字母 : w
当时字母 : M
当时字母 : e
当时字母 : A
当时字母 : I
完结!

材料与代码下载

本教程系列的代码能够在ShowMeAI对应的github中下载,可本地python环境运转,能科学上网的宝宝也能够直接凭借google colab一键运转与交互操作学习哦!

本教程系列涉及的Python速查表能够在以下地址下载获取:

  • Python速查表

拓展参考材料

  • Python教程—Python3文档
  • Python教程-廖雪峰的官方网站

ShowMeAI相关文章引荐

  • python介绍
  • python安装与环境配置
  • python根底语法
  • python根底数据类型
  • python运算符
  • python条件控制与if句子
  • python循环句子
  • python while循环
  • python for循环
  • python break句子
  • python continue句子
  • python pass句子
  • python字符串及操作
  • python列表
  • python元组
  • python字典
  • python集合
  • python函数
  • python迭代器与生成器
  • python数据结构
  • python模块
  • python文件读写
  • python文件与目录操作
  • python过错与异常处理
  • python面向对象编程
  • python命名空间与作用域
  • python时刻和日期

ShowMeAI系列教程引荐

  • 图解Python编程:从入门到通晓系列教程
  • 图解数据剖析:从入门到通晓系列教程
  • 图解AI数学根底:从入门到通晓系列教程
  • 图解大数据技术:从入门到通晓系列教程

图解python | pass语句