xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to convert the first character of each word of a string to uppercase in Python
Python Online Editor
Execute Code
More Python Sample Codes
# How to convert the first character of each word to uppercase in Python str_Variable = "python is A proGRAMMING language." title_Variable = str_Variable.title() # use title() method of string print(title_Variable) # Output: Python Is A Programming Language.