试卷时间 60分钟,请不要在试卷上作答,用A4纸做答题纸作答。
A、x = y = z = 1 B、x = (y = z + 1)
C、x, y = y, x D、x += y
A、变量不必事先声明 B、变量无须先创建和赋值而直接使用
C、变量无须指定类型 D、可以使用del释放资源
A、int32 B、40XL C、self D、name
A、除字典类型外,所有标准对象均可以用于布尔测试
B、空字符串的布尔值是False
C、空列表对象的布尔值是False
D、值为0的任何数字对象的布尔值是False
A、5+4j > 2-3j B、3>2>2
C、(3,2) ‘xyz’
A、char B、int C、float D、list
A、表示复数的语法是real + image j B、实部和虚部都是浮点数
C、虚部必须后缀j,且必须是小写 D、方法conjugate返回复数的共轭复数
A、字符应该视为长度为1的字符串 B、字符串以标志字符串的结束
C、既可以用单引号,也可以用双引号创建字符串 D、在三引号字符串中可以包含换行回车等特殊字符
A、dict1 = {} B、dict2 = { 3 : 5 } C、dict3 = {[1,2,3]: “uestc”} D、dict4 = {(1,2,3): “uestc”}
A、min = x if x y ? x : y
C、if (x > y) print x D、while True : pass
print type(1/2)
A. B. C. D. E.
| 12 | nums = set([1,1,2,3,3,3,4])print len(nums) |
A.1 B.2 C.4 D.5 E.7
| 123456789101112 | counter = 1 def doLotsOfStuff(): global counter for i in (1, 2, 3): counter += 1 doLotsOfStuff() print counter |
A.1 B.3 C.4 D.7 E.none of the above
| 1 | print r\”nwoow\” |
A.new line then the string: woow
B.the text exactly like this: r”nwoow”
C.the text like exactly like this: nwoow
D.the letter r and then newline then the text: woow
E.the letter r then the text like this: nwoow
| 12345 | for i in range(2): print i for i in range(4,6): print i |
A.2, 4, 6 B.0, 1, 2, 4, 5, 6 C.0, 1, 4, 5 D.0, 1, 4, 5, 6, 7, 8, 9 E.1, 2, 4, 5, 6
| 123 | import math print math.floor(5.5) |
A.5 B.5.0 C.5.5 D.6 E.6.0
and the program is run as: python /usr/lib/python/person.py
What gets printed?()
| 12345678 | class Person: def __init__(self): pass def getAge(self): print __name__ p = Person()p.getAge() |
A.Person B.getAge C.usr.lib.python.person D.main E.An exception is thrown
| 123456 | names1 = [\’Amir\’, \’Barry\’, \’Chales\’, \’Dao\’] if \’amir\’ in names1: print 1else: print 2 |
A.1 B.2 C.An exception is thrown
|
1234,用A4纸做答题纸作答。
一,中文单项选择题(30分,每个3分)
A、x = y = z = 1 B、x = (y = z + 1) C、x, y = y, x D、x += y
A、变量不必事先声明 B、变量无须先创建和赋值而直接使用 C、变量无须指定类型 D、可以使用del释放资源
A、int32 B、40XL C、self D、name
A、除字典类型外,所有标准对象均可以用于布尔测试 B、空字符串的布尔值是False C、空列表对象的布尔值是False D、值为0的任何数字对象的布尔值是False
A、5+4j > 2-3j B、3>2>2 C、(3,2) ‘xyz’
A、char B、int C、float D、list
A、表示复数的语法是real + image j B、实部和虚部都是浮点数 C、虚部必须后缀j,且必须是小写 D、方法conjugate返回复数的共轭复数
A、字符应该视为长度为1的字符串 B、字符串以标志字符串的结束 C、既可以用单引号,也可以用双引号创建字符串 D、在三引号字符串中可以包含换行回车等特殊字符
A、dict1 = {} B、dict2 = { 3 : 5 } C、dict3 = {[1,2,3]: “uestc”} D、dict4 = {(1,2,3): “uestc”}
A、min = x if x y ? x : y C、if (x > y) print x D、while True : pass
二,英文单项选择题(30分)
print type(1/2) A. B. C. D. E.
A.1 B.2 C.4 D.5 E.7
A.1 B.3 C.4 D.7 E.none of the above
A.new line then the string: woow B.the text exactly like this: r”nwoow” C.the text like exactly like this: nwoow D.the letter r and then newline then the text: woow E.the letter r then the text like this: nwoow
A.2, 4, 6 B.0, 1, 2, 4, 5, 6 C.0, 1, 4, 5 D.0, 1, 4, 5, 6, 7, 8, 9 E.1, 2, 4, 5, 6
A.5 B.5.0 C.5.5 D.6 E.6.0
and the program is run as: python /usr/lib/python/person.py What gets printed?()
A.Person B.getAge C.usr.lib.python.person D.main E.An exception is thrown
A.1 B.2 C.An exception is thrown
|