注意:此页面搜索的是所有试题
以下代码的运行结果为( )。
x = True
country_number = {}
def example(country):
if country in country_number:
country_number[country] += 1
else:
country_number[country] = 1
example(.中国.)
example(.美国.)
example(.中国.)
print(len(country_number))
A.0
B.1
C.2
D.3

参考答案