# Chapter 12 example: len() gives the length of a string. print(len("hello")) print(len("")) greeting = "Welcome" print(len(greeting)) # Try adding a line below that prints the length of your name.