You are viewing a single comment's thread. Return to all comments →
Why won't this work?
firstname = names[0]
surname = names[1]
FirstName = firstname[0].upper() + firstname[1:]
SurName = surname[0].upper() + surname[1:]
Capitalize!
You are viewing a single comment's thread. Return to all comments →
Why won't this work?
firstname = names[0]
surname = names[1]
FirstName = firstname[0].upper() + firstname[1:]
SurName = surname[0].upper() + surname[1:]