So, I have this:
while cancer[j] != ("l"or"r"or"c")
and it's stopping at the first "l" in the way when it has some r and c in between the string, its acting like there are not "or" and only the "l".
for example my string is this one:
c56r36c20l80c23l180c23l20c55r70
and it returns:
c56r36c20
It stops right at the first "l", skipping the "c" and "r" in the way.