以下四个选项中属于语法错误的是(   )
A、a,b = 3,4 if a>b print(a) else print(b)
B、 ls = [1,2,3,4] print(ls[5])
C、 a,b =3,0 print(a/b)
D、a,b = 3,4 print(a + c)