4.0.3 Do Now Log in to Repl Write down what the output of the function print_6_stars is: def print_6_stars(): my_string = '' for i in range(0, 6): my_string += ' *' print(my_string)