第一章 单元测试
1、
缩进对于Python程序至关重要。
A:错
B:对
答案: 对
2、
在Python 3.x中不能使用汉字作为变量名。
A:错
B:对
答案: 错
3、
下面哪些是正确的Python标准库对象导入语句?
A:import math.*
B:from math import sin
C:from math import *
D:import math.sin as sin
答案: from math import sin;from math impo