Review this Python 3 code.
Which input causes the program output to include Thank You?
Thank You
539 is valid input for Python’s int() conversion. The conversion succeeds, break exits the loop, and execution reaches the final print statement.
539
int()
break
print
Community Discussion