以下代码的运行结果为( )。
a = 1
b = 2
if a:
a = 3
print(b)
else:
b = 4
print(a)
A.1
B.2
C.3
D.4
出自:国家开放大学Python程序设计