Question: The following Python program was made to generate the pattern: 2 3 4 4 5 6 6 6 7. Fill in the blanks with the
The following Python program was made to generate the pattern: 2 3 4 4 5 6 6 6 7. Fill in the blanks with the appropriate code, in order to run the program without errors. for num in range(2, 8): for i in range(1, _____): if _____ == 0: print(num, end=" ") print() Option A num, num % i Option B num * 2, num // 2 Option C num, num / i Option D num / 2, num ** 2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
