

What does this program print?
Trace the program the way the computer would, then make your call before running anything.
has_sun = True has_clouds = False show_rainbow = has_sun and not has_clouds print(show_rainbow)


Trace the program the way the computer would, then make your call before running anything.
has_sun = True has_clouds = False show_rainbow = has_sun and not has_clouds print(show_rainbow)