试卷总分:100分
选择题 5题 25分
编程题 5题 75分
print(10 - 2)
S = "Python"
if 10 > 5: print(True) else: print(False)
1st = [0, 1, 2] while len(1st) < 11: lst.append(1st[-1] * 2) print(sum(1st))
def fun(a, *b, c=1, d): print(a + b) print(c, d)
输入
50
输出
150
12.3
12
6 4
2
5
8 2 0 1 0 1 1 0 0 1
3