8000
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 d98ce06 commit 54fe530Copy full SHA for 54fe530
ch04-strings-and-string-methods/4-interact-with-user-input.py
@@ -11,3 +11,9 @@
11
# Exercise 2
12
# Display the input string converted to lower-case letters
13
print(my_input.lower())
14
+
15
16
+# Exercise 3
17
+# Take user input and display the number of input characters.
18
+input_string = input("Type something else: ")
19
+print(len(input_string))
0 commit comments