Error:-
Code:-
def main():
# Input
place = input("Will we go to north carolina?")
if (place == "Yes"):
print ("The drive will take all most a full day.")
else:
print ("I do not know how long the drive wil last.")
main()
It is saying invalid syntax and highlighting the main in red
