Python中的Statement(语句)、Indentation(缩进)和Comment(注释)
Statement:语句
Python中有不同类型的statement,包括复制语句、条件语句、循环语句等。
Multi-Line Statements:Python中可以用圆括号()、大括号{}、方括号[]、分号;反斜杠来进行一行或者多行的复制语句。
1>>> var=1+2+3+
2 4+5
3 +6
4>>> var
521
6>>>
7>>> var=(1*2*3)+3
8>>> var
99
10>>> var=['a','b','c']
11>>> var
12['a', 'b', 'c']
13>>> a=2;b=3
14>>> a
152
16>>> b
173
18>>>
Indentation:缩进
C++和Java通常用{}来定义代码块,而Python则利用indentation来高亮代码块。所有拥有相同缩进的代码都属于同一个代码块。向右缩进代表嵌套得更深。
Comments:注释
#后面的则为注释内容
多行注释用三个单引号”’或者双引号”””括住
1>>> """
2This would be a multiline comment in Python that
3spans several lines and describes geeksforgeeks.
4A Computer Science portal for geeks. It contains
5well written, well thought
6and well-explained computer science
7and programming articles,
8quizzes and more.
9…
10"""
11'nThis would be a multiline comment in Python thatnspans several lines and describes geeksforgeeks.nA Computer Science portal for geeks. It containsnwell written, well thoughtnand well-explained computer sciencenand programming articles,nquizzes and more.n…n'
12>>> print("GeeksForGeeks")
13GeeksForGeeks
14>>>
原文始发于微信公众号(BioInfo):Python4-Statement, Indentation and Comment in Python
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/238232.html