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