#reminder - here is a interger that is multiplyed by 3 number = 5 print (number * 3) #here is a string that has beeen multiplied by 3 #(note the speech marks text and coulor num_string ="5" print(num_string * 3) #an example showing what the len(foo) method dose example_text="hello world" text_length=len(example_text) print(f"'{example_text}' is {text_length} characters long ")