number = 5 print(number * 3) # here is a string that has been multiplied by 3 # (note the speech marks are 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")