Question: note: options are same for both the questions Question Completion Status: The following block of Python code prints a solid triangle of asterisks, with 10

note:
options are same for both the questions
Question Completion Status: The following block of Python code prints a solid triangle of asterisks, with 10 asterisks along each of its sides. Assume that variable size stores the value 10. for count in range (size): print(" * * count + **** (size - count)) The output from this code is shown below and referred to as the 'original drawing'. Your task is to complete the block of code below so that it prints the original drawing flipped both verticallyand horizontally. The output expected would be: (size) (1, size + 1) (1, size - 1) (size - 1) "*"* (size - count) + "" * count "*" * count + ""* (size - count) "*" * count-""* (size + count) " " * count + "*" * (size - count) for count in range print Click Save and submit to save and submit. Click Save All Answers to save all answers
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
