请用一行Python代码完成以下代码的功能
def m(x): return x**2+8*x-1 def main(): Dict={} for i in range(20): if i%2==0: Dict[i]=m(i) print(Dict) main()
ZJUT