以下代码的运行结果为( )。
def example(country=.中国.,name):
print(.%s,%s.%(name,country))
example(.美国.,.张三.)
A.美国,张三
B.报错
C.张三,美国
D.张三,中国
出自:国家开放大学Python程序设计