when i executed the below code it is not printing ("yes we can"), its only printing ("all the best"). I am running the code in the visual studio. Executing statement inside if block is not printing in python.
code:
team = input("your favorite team")
if team == "Ferrari" :
print("yes we can")
print("all the best")
may anyone please help me.