Question: Fill in the blank so the code will print the following pattern: OOO OOX OXX XXX i = 3 while i>=0: print( O*i + X*(______)
Fill in the blank so the code will print the following pattern: OOO OOX OXX XXX i = 3 while i>=0: print( "O"*i + "X"*(______) ) i-=1
Note:Pay attention tothe pattern of "X"over iterations.In the blank,you will need to use i ina smart way.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
