There is an extra space in the output of a string. This is the section of the code where it happens. It happens in the string of the function, nameConfirmation().
def chooseName():
    name = ""
    name = raw_input("Let's begin with your name. What is it? ")
    return name
def nameConfirmation():
    name = chooseName()
    print ("Right... So your name is", name,".")
This is the output it gives.
Right... So your name is Raven .
How do I get rid of the space in between the name and the punctuation?
 
     
     
     
     
     
    