8 lines
221 B
Python
8 lines
221 B
Python
# Exercise 2-7 Stripping Names
|
|
# Learning Objective: Utilize rstrip(), lstrip(), and strip() methods on a string variable.
|
|
|
|
name = " \tcheeks\n "
|
|
print(name)
|
|
print(name.lstrip())
|
|
print(name.rstrip())
|
|
print(name.strip()) |