JeffreyYu
Member
When I run:
turnaround = "Normal (3 day turnaround)"
return turnaround
It returns "Normal" without a problem.
But when I run:
turnaround = "Normal (<3 day turnaround)"
return turnaround
It returns: EOL while scanning string literal (<string>, line 3)
Why does the < character cause this issue? how can i work around it?
turnaround = "Normal (3 day turnaround)"
return turnaround
It returns "Normal" without a problem.
But when I run:
turnaround = "Normal (<3 day turnaround)"
return turnaround
It returns: EOL while scanning string literal (<string>, line 3)
Why does the < character cause this issue? how can i work around it?