Skip to content
Find the output of the following python program. how_many=10…
Questions
Find the оutput оf the fоllowing python progrаm. how_mаny=10if how_mаny == 1: print("Single")elif how_many == 2: print("Couple")elif how_many < 5: print("Few")elif how_many < 10: print("Several")elif how_many > 10: print("Lots")else: print("None")