Can someone explain to me why this code gives me "No Output" in sololearn
def beer_song(): bottles = 99 for beer in range(0,99): print(bottles,'bottles of beer on the wall,') print(bottles,'bottles of beer,') print('Take one down, pass it around,') bottles -=1 if bottles == 1: print(bottles,'bottle of beer on the wall.') print(bottles,'bottle of beer on the wall,') print(bottles,'bottle of beer,') print('Take one down, pass it around,') bottles -= 1 if bottles == 0: print('No more bottles of beer on the wall.') print('No more bottles of beer on the wall,') print('No more bottles of beer,') print('Go to the store, buy some more,') print('99 bottles of beer on the wall.') break print(bottles,'bottles of beer on the wall.') This is the code, when I run it in Idle it runs perfectly fine but solo learn is telling me "No Output"