Preview:
def try_except_fun():
    while True:
        try:
            res = int(input('Input a number:'))
        except:
            print('Not an integer')
            continue
        else:
            print('if exception doesnt happen')
            break
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter