Question: I submitted this problem earlier, but it's taking a long time to get this solved. Please help with this problem. Please look at what I
I submitted this problem earlier, but it's taking a long time to get this solved. Please help with this problem. Please look at what I got and make corrections.

3.9 LAB: Input and formatted output: Right-facing arrow Given input characters for an arrowhead and arrow body, print a right-facing arrow. Ex: If the input is: Then the output is: #* ** *#=# * * * * *## 356102 2281682 qx2zgy7 LAB ACTIVITY 3.9.1: LAB: Input and formatted output: Right-facing arrow 0 / 10 main.py Load default template... base_char = input() head_char = input() row1 = ' + head_char base_char = input() head_char = input() 9 row1 = ' ' + head_char 10 row2 = base_char + base_char + base_char + base_char + base_char + head_char + head_char 11 row3 = base_char + base_char + base_char + base_char + base_char + head_char + head_char + 12 head_char 13 14 print (row1) 15 print (row2) 16 print (row3) 17 print (row2)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
