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