Python pass 语句

Posted 雷林鹏

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python pass 语句相关的知识,希望对你有一定的参考价值。

  Python pass 语句

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

  Python 语言 pass 语句语法格式如下:

  pass

  实例:

  #!/usr/bin/python

  for letter in ‘Python‘:

  if letter == ‘h‘:

  pass

  print ‘This is pass block‘

  print ‘Current Letter :‘, letter

  print "Good bye!"

  以上实例执行结果:

  Current Letter : P

  Current Letter : y

  Current Letter : t

  This is pass block

  Current Letter : h

  Current Letter : o

  Current Letter : n

  Good bye!

  (编辑:雷林鹏 来源:网络)

以上是关于Python pass 语句的主要内容,如果未能解决你的问题,请参考以下文章

Python中 pass语句的作用

Python pass语句作用与用法

二级Python中的pass语句

8python break continue pass语句

python break ,continue和 pass 语句

Python之流程控制