Answers for "python to small case"

0

how to apply sentence case in python

v = 'hello'
v = v.title()
print(v)
# "v.title" converts it into sentence case
Posted by: Guest on June-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language