We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af7657b commit 206f9b6Copy full SHA for 206f9b6
app.py
@@ -5,4 +5,6 @@
5
print('Length: ', len(input_text))#print length of entered text
6
print('Uppercase output: ', input_text.upper())#print text in uppercase
7
print('Lowercase output: ', input_text.lower())#print text in lowercase
8
-print('Titlecase output: ', input_text.title())#print text in titlecase
+print('Titlecase output: ', input_text.title())#print text in titlecase
9
+print('Capitalized output: ', input_text.capitalize())#print text in capitalized
10
+print('Reversed output: ', input_text[::-1])#print text in reverse
0 commit comments