Question: Question 3 ( 1 point ) After the following code is run, surf 1 will be blitted at the center of the Display while surf

Question 3(1 point)
After the following code is run, surf1 will be blitted at the center of the Display while
surf2 will be blitted at the top left of the Display:
screen = pygame.display.set_mode((500,500))
surf1= pygame.Surface((100,100))
surf1.fill((255,0,0))
surf2= pygame.Surface((50,50))
surf2.fill((0,255,0))
surf1.blit(surf2,(0,0))
screen.blit(surf1,(250,250))
pygame.display.flip()
True
False
Question 3 ( 1 point ) After the following code

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!