The code below keeps skipping the "TryAgainQuestion()" function:::: I Realy need some help!!! It is becoming annoying
    import time
    ranname = "0"
def AskForName():
    ranname = "1"
    name = input("Please enter your name: ")
    print("--------------------")
    print("  .:: ",name," ::.")
    print("--------------------")
    print("     ")
    time.sleep(2)
    Start()
def TryAgainQuestion():
    tryagain = input("Do you want to try again? (Y or N): ")
    if (tryagain == "y" or "Y"):
        AskForName()
    else:
        time.sleep(1)
        print("Made By: Daniel Parker")
def Start():
    if (ranname == "1"):
        TryAgainQuestion()
    if (ranname == "0"):
        AskForName()
Start()
Thanks, Dan
 
     
    