Input
bottles = input("How many bottles of beer are on the wall?")
bottles = int(bottles)
input
returns a string, so the value needs to be converted with int()
bottles = input("How many bottles of beer are on the wall?")
bottles = int(bottles)
input
returns a string, so the value needs to be converted with int()