Answers for "what is capitalize() 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

Python Answers by Framework

Browse Popular Code Answers by Language