Skip to content

Commit 72b8da2

Browse files
authored
Fix typo in exercise
1 parent 0d5994a commit 72b8da2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch04-strings-and-methods/3-use-string-methods.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
# Exercise 5
4747
string1 = string1.lower()
4848
# (string2 will pass unmodified)
49-
string3 = string2.lower()
49+
string3 = string3.lower()
5050
string4 = string4.strip().lower()
5151

5252
print(string1.startswith("be"))

0 commit comments

Comments
 (0)