• 技术文章 >常见问题 >Python常见问题

    Python使用什么划分语句块?

    yangyang2020-05-18 10:10:51原创5406

    python以缩进格式来划分句块。在代码前放置空格来缩进语句即可创建语句块,语句块中的每行必须是同样的缩进量。

    缩进:Python开发者有意让违反了缩进规则的程序不能通过编译,以此来强制程序员养成良好的编程习惯;

    增加缩进表示语句块的开始,而减少缩进则表示语句块的退出。

    示例:

    this is a line
      this is a line
           this is another block
           continuing the same block
           the last line of this block
      phew,there we escaped the inner block

    但是在Python中,冒号(:)用来标识语句块的开始,块中的每一个语句都是缩进的(缩进量相同)。

    更多Python知识请关注Python自学网

    专题推荐:python
    上一篇:python中%d是什么 下一篇:python如何取列表中的数据?

    相关文章推荐

    • python字符串怎么解码?• Python中字典为什么比列表快?• 如何把python中列表内容打印出来?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网