Answer:
Check the explanation
Step-by-step explanation:
arrow_base_height = int(input('Enter arrow base height:\\'))
arrow_base_width = int(input('Enter arrow base width:\\'))
arrow_head_width = arrow_base_width
while arrow_head_width <= arrow_base_width:
arrow_head_width = int(input('Enter arrow head width:\\'))
print()
for i in range(arrow_base_height):
for j in range(arrow_base_width):
print('*', end='')
print()
for i in range(arrow_head_width):
for j in range(arrow_head_width-i):
print('*', end='')
print()
Kindly check the code output below.