I have a problem and it is that my code isn't displaying after the nested statement.
After confirmation.lower == no, it asks the Wrong Info Input and then skips to the Else statement without executing what is in any of the if or elif statements.
confirmation = input("Confirm if information is correct ('yes' or 'no'):")
#confirms if deatils are incorrect
if confirmation.lower() == "no":
wronginfo = input("Indicate Wrong Info:")
if wronginfo.lower() == "First Name":
NewInfo = input(wronginfo+":")
FirstName = NewInfo
details()
elif wronginfo.lower() == "Last Name":
NewInfo = input(wronginfo+":")
LastName = NewInfo
details()
elif wronginfo.lower() == "Age":
NewInfo = input(wronginfo+":")
Age = NewInfo
details()
else:
start = input("Type 'y' to start:")
Note: Details is a function that prints All info such as First Name and last name