Skip to content

Commit c4edec7

Browse files
Fix technical typo
1 parent 6aa39b8 commit c4edec7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ch04-strings-and-string-methods/3-manipulate-strings-with-methods.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
string3 = " Cheeseburger "
2828

2929
print(string1.strip()) # Could also use .lstrip()
30-
print(string1.strip()) # Could also use .rstrip()
30+
print(string2.strip()) # Could also use .rstrip()
3131
print(string3.strip())
3232

3333

0 commit comments

Comments
 (0)