(b) The uncompleted code below simulates a Primary School game, which you are to complete. It collects an integer as input from a user (using the input() function) continuously until the user enters the lucky number 5. When the user gets the lucky number, the while loop in the code must terminate. Thereafter, a message \"you are right\" is printed out, in addition, the total number of user attempts, is printed. [10 marks].
Note: This is a python game not pygame.
4
5
while(t):
6
print("quess a number")
7
i =int(input())