python-crash-course/Chapter_02/2-07_stripping_names.py
2025-01-22 12:32:29 -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())