Now, we will then make conditional statements to check for the input.
if tryAgain is "y":
pass
Pass is used as a placeholder or a buffer for codes. In this case, when the program reads the pass block, it automatically disregards the next conditional statement, which is
elif tryAgain is "n":
break
Break, in this case, will end the while True loop.