Alan Ting wrote: > Hello, > How do I get the characters to separate? > This is what I did. > def personalNote(name): > 'Print a personalized love note' > x = (name) Oh, I forgot to mention... the line x = (name) is utterly pointless. Instead of wasting time with x=name, just use name everywhere your code uses x. -- Steven