×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
South Point - Class XI - Computer Science. Assignment Number 14b Pattern 04
Use of capitalize() and split() - Python Language
1288    Arnab De    17/12/2020

Write a program to input a name from user, now convert the name into initial format
For example,
Input: rabinDra naTH taGOrE
Output: Rabindra Nath Tagore

softetechnologies
name=input("Enter A Name : ")
name=name.lower()
namepart=name.split()
newname=""
for word in namepart:
    newname = newname + word.capitalize() + " "
newname=newname.strip()
print(newname); 
softetechnologies
South Point - Class XI - Computer Science. Assignment Number 14b Pattern 04
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Aristotle
Educating the mind without educating the heart is no education at all.
Aristotle
2322
63.24
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     46575
25/06/2018     38729
01/01/2018     38407
28/06/2017     36337
02/08/2017     35042
01/08/2017     29315
06/07/2017     29071
15/05/2017     28600
14/07/2017     24430
11/09/2018     23464
softetechnologies