# Chapter 26 example: string methods work the same way in Python. name = "keiko" print(name.upper()) # KEIKO print("hello" * 3) # hellohellohello