When I give the input to the input function it just shows the message from the else statement output after completing giving input to the if and elif statements. So, this is the code:
import turtle
my_turtle = turtle.Turtle()
def heart():
my_turtle.color('red')
my_turtle.left(140)
my_turtle.forward(150)
my_turtle.circle(-60, 190)
my_turtle.left(100)
my_turtle.circle(-60, 190)
my_turtle.forward(150)
favorite_song = input('Which song do you listen the most: ')
Normal_song = input('Which song is your normally heard song: ')
if favorite_song == True:
print(favorite_song + ' is your favorite song')
print(heart())
elif Normal_song == True:
print(Normal_song + ' is your normally heard song')
else:
print('NO INPUT GIVEN')