python input without capital letters

Solutions on MaxInterview for python input without capital letters by the best coders in the world

showing results for - "python input without capital letters"
Ambrine
09 May 2020
1# Python has a lower() function to convert
2#an uppercase string to an identical lowercase string
3
4string = 'MY STRING IN CAPITAL LETTERS'
5print(string.lower())
6#or:
7string = 'My String In Capital Letters'
8print(string.lower())
9
10#OUTPUT: 
11#my string in capital letters
12#my string in capital letters
similar questions
queries leading to this page
python input without capital letters