一、交换式编程
直接输入python命令,即可进入python命令行,进入命令行,会出现以下的内容。
Python 3.4.8 (default, Mar 23 2018, 10:04:27)
[GCC 4.8.5 20150623 (Red Hat 4.8.5-16)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>>
>>> 提示符,代表一行 ...提示符,提示可以接着上一行输入。
二、注释
Python中单行注释以 # 开头
示例:
#!/usr/bin/python3
# 第一个注释
print ("Hello, Python!")
多行注释可以用多个 # 号,还有 ''' 和 """
"""
第五注释
第六注释
"""
三、行与缩进
python最具特色的就是使用缩进来表示代码块,不需要使用大括号 {} 。
缩进的空格数是可变的,但是同一个代码块的语句必须包含相同的缩进空格数。
示例:
if True:
print ("True")
else:
print ("False")
四、多行语句
Python 通常是一行写完一条语句,但如果语句很长,我们可以使用反斜杠()来实现多行语句。
示例:
total = item_one + \
item_two + \
item_three
注意
在 [], {}, 或 () 中的多行语句,不需要使用反斜杠().
示例:
total = ['item_one', 'item_two', 'item_three',
'item_four', 'item_five']
五、键盘输入输出
输入
input("请输入内容")
输出
print(“输出内容”)