# Reminder - here is an integer that has been multiplied by 3 number = 5 print(number * 3) # Here is a string that has been multiplied by 3 # (Note the speech marks and text colour) num_string = "5" print(num_string * 3) # An example showing what the len(foo) method does example_text = "Hello World" text_length = len(example_text) print(f"'{example_text}' is {text_length} characters long")