Answers for "how to make all words capital word in python"

1

how to capitalize words in python

Text = "python is easy"
print(Text.capitalize())
####output####
Python is easy
Posted by: Guest on October-12-2021

Code answers related to "how to make all words capital word in python"

Python Answers by Framework

Browse Popular Code Answers by Language