编码
默认情况下,Python 3 源码文件的编码为 UTF-8 编码,所有字符串都是 unicode 字符串。 也可以为源码文件指定不同的编码:
# -*- coding: cp-1252 -*-
上述定义允许在源文件中使用 Windows-1252 字符集中的字符编码,对应适合语言为保加利亚语、白罗斯语、马其顿语、俄语、塞尔维亚语。
关键字
保留字即关键字,我们不能把它们用作任何标识符名称。Python 的标准库提供了一个 keyword 模块,可以输出当前版本的所有关键字:
>>> import keyword
>>> keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
>>>
标识符
第一个字符必须是字母表中字母或下划线 _ 。
标识符的其他的部分由字母、数字和下划线组成。
标识符对大小写敏感。
在 Python 3 中,非 ASCII 标识符也是允许的了。
name,Name,_name
注释
Python中单行注释以 # 开头,多行注释可以用多个#号或三个单引号'''
和三个双引号"""
# 第一个注释
# 第二个注释
'''
第三注释
第四注释
'''
"""
第五注释
第六注释
"""
print ("Hello, Python!")
行与缩进
python最具特色的就是使用缩进来表示代码块,不需要使用大括号 {} 。缩进的空格数是可变的,但是同一个代码块的语句必须包含相同的缩进空格数。
# Author: dry
#正确示例
if True:
print("hello")
else:
print("world")
#错误示例
if True:
print("hello")
else:
print("world")
print("hello")#缩进不一致会导致错误
#缩进不一致将会导致如下的错误
File "F:/PycharmProjects/MOOC/day5_base/base1.py", line 6
print("hello")
^
IndentationError: unexpected indent
多行语句
Python 通常是一行写完一条语句,但如果语句很长,我们可以使用反斜杠(\)
来实现多行语句,例如:
total = "item_one" + \
"item_two" + \
"item_three"
print(total)
#运行上述代码将会输出
item_oneitem_twoitem_three
在 [], {}, 或 () 中的多行语句,不需要使用反斜杠(),例如:
total1 = ['item_one', 'item_two', 'item_three',
'item_four', 'item_five']
print(total1)
#运行上述代码将会输出
['item_one', 'item_two', 'item_three', 'item_four', 'item_five']
数字(Number)类型
python中数字有四种类型:整数、布尔型、浮点数和复数。
int (整数), 如 1, 只有一种整数类型 int,表示为长整型,没有 python2 中的 Long。
bool (布尔), 如 True。
float (浮点数), 如 1.23、3E-2
complex (复数), 如 1 + 2j、 1.1 + 2.2j
字符串(String)
'\'
word = '字符串'
sentence = "这是一个句子。"
paragraph = """这是一个段落,
可以由多行组成"""
字符串示例
str = 'dry1234'
#字符串的截取的语法格式:变量[头下标:尾下标:步长]其中不包含尾下标
print(str) # 输出字符串
print(str[0:-1]) # 输出第一个到倒数第二个的所有字符
print(str[0]) # 输出字符串第一个字符
print(str[2:5]) # 输出从第三个开始到第五个的字符
print(str[2:]) # 输出从第三个开始的后的所有字符
print(str * 2) # 输出字符串两次
print(str + '你好') # 连接字符串
print('------------------------------')
print('hello\nworld') # 使用反斜杠(\)+n转义特殊字符
# 这里的 r 指 raw,即 raw string。
print(r'hello\nworld') # 在字符串前面添加一个 r,表示原始字符串,不会发生转义
运行上述代码将会输出
dry1234
dry123
d
y12
y1234
dry1234dry1234
dry1234你好
------------------------------
hello
world
hello\nworld
空行
函数之间或类的方法之间用空行分隔,表示一段新的代码的开始。类和函数入口之间也用一行空行分隔,以突出函数入口的开始。空行与代码缩进不同,空行并不是Python语法的一部分。书写时不插入空行,Python解释器运行也不会出错。但是空行的作用在于分隔两段不同功能或含义的代码,便于日后代码的维护或重构。
空行也是程序代码的一部分。
输入与输出
python中用input函数表示输入,用print函数表示输出。
name = input("请输入姓名:")
print(name)#换行输出
print("-----------------------")
print(name,end=",")#不换行输出,表示以逗号分隔
print(name,end="")#不换行输出
#运行上述代码将会输出
请输入姓名:dry
dry
-----------------------
dry,dry
同一行显示多条语句
Python可以在同一行中写多条语句,语句之间使用分号(;)分割,但不建议这么做,不利于代码的阅读和维护。
name = input("请输入姓名:");print("hello");print("world")
import 与 from…import
>>> help(print)
Help on built-in function print in module builtins:
print(...)
print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
Prints the values to a stream, or to sys.stdout by default.
Optional keyword arguments:
file: a file-like object (stream); defaults to the current sys.stdout.
sep: string inserted between values, default a space.
end: string appended after the last value, default a newline.
flush: whether to forcibly flush the stream.