使用Python获取语法错误

时间:2015-04-06 00:19:13

标签: python syntax-error

我正在尝试使用Python2.7创建一个简单的键盘记录器,并为这段代码获取一个SyntaxError:

def OnKeyboardEvent(event):
    logging.basicConfig(filename=file_log, level=logging.DEBUG, format='%(message)s'
    chr(event.Ascii)
    logging.log(10,chr(event.Ascii))
    return True

输入后,它会显示无效的语法并突出显示`(event.Ascii)旁边的chr

如果你能回答这个谢谢你!

(预览中的PS代码是按行正确设置的)

1 个答案:

答案 0 :(得分:1)

def OnKeyboardEvent(event):
    logging.basicConfig(filename=file_log, level=logging.DEBUG, format='%(message)s') # missing )
    chr(event.Ascii)