How many times "Python" will print on screen after execution of given code: for x in range(3): for y in range(2): print("Python") A. 2 times B. 4 times C. 3 times D. 6 times​