python-crash-course/Chapter_02/2-7_strippingNames.py
2025-01-20 16:39:02 -05:00

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())