

What does this program print?
Trace the program the way the computer would, then make your call before running anything.
clouds = {"cumulus", "stratus"}
clouds.add("cumulus")
clouds.add("nimbus")
print(len(clouds))

Trace the program the way the computer would, then make your call before running anything.
clouds = {"cumulus", "stratus"}
clouds.add("cumulus")
clouds.add("nimbus")
print(len(clouds))