# comment with ALERT

''' multiline
    comment
    ###
    '''

def func(x):
    """ API docs """
    if x == 42:
        func()
        c1 = {}
        c2 = {
            2.4,
            0x42
            }
        a1 = []
        a2 = [
            "a", 032, (
                )]
    else:
        print("""multi
            line
            string""")
        print("single \
                continued line ")
        print('single line')
    return float(len(a2))