The * operator does different things for different types of operands.
For float and int operands, it's multiplication.
For str * int, it repeats the str, int number of times.
For example,
"tea" * 3
repeats the the characters in the strings 3 times, giving
"teateatea"