1.

What gets printed?country_counter = {}def addone(country):if country in country_counter:country_counter[country] + = 1else:country_counter[country] = 1addone(‘China’)addone(‘Japan’)addone(‘china’)print len(country_counter)

Answer»

The output is :

3



Discussion

No Comment Found