Why does syntax error appear when executing this block? I can not find the reason:
for Empleados in cursor:
emplead = '\t'+ str(Empleados[0]) + '\t'+ str(Empleados[1]) + '\t' +
str(Empleados[2]+ \
'\t' + str(Empleados[3] +'\t' + str(Empleados[4] + '\t' + str(Empleados[5]
+ '\t' + str(Empleados[6])
print (str(emplead))
This is the error that shows me:
print (str(emplead))
^
SyntaxError: invalid syntax
The chain is 2 lines, I appreciate guidance.