#reminder - here is an integer that has been multiplied num = 5 print(num * 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_txt = "hello world" txt_length = len(example_txt) print(f"'{example_txt}' is {txt_length} characters long")