# This program prints part of a song. # It demonstrates a for loop with two lines in its body. def main(): print("My Coding Song:") for i in range(3): print("'C' is for 'Coding'") print("That's good enough for me!") print("Oh!") print("Coding, Coding, Coding starts with 'C'!") main()