Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Please Help
#2
I'm sure it's not the best practice, but in the past I've added spaces by putting in a string that just contains a space.

You say you have to use title() So you just have to make a string that is the first and second names, and apply the title method.

full_name_string = str(first_name + " " + second_name)
print(full_name_string.title())
It works at least lol
Reply


Messages In This Thread
Please Help - by jackthechampion - Jan-25-2020, 02:32 AM
RE: Please Help - by michael1789 - Jan-25-2020, 03:00 AM
RE: Please Help - by buran - Jan-25-2020, 05:19 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020