Skip to content

Commit 0e6e698

Browse files
committed
Add title case output
1 parent 4c79e4e commit 0e6e698

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
print(input_text)#print variable to entered text input
55
print('Length: ', len(input_text))#print length of entered text
66
print('Uppercase output: ', input_text.upper())#print text in uppercase
7-
print('Lowercase output: ', input_text.lower())#print text in lowercase
7+
print('Lowercase output: ', input_text.lower())#print text in lowercase
8+
print('Titlecase output: ', input_text.title())#print text in titlecase

0 commit comments

Comments
 (0)