if new.upper() == "C":
first()
try:
a, b, c = re.split(r"(\s+)", new)
except ValueError:
return
The syntaxs error occures to the colon behind "C". if new.upper() == "C": What can i do to fix this problem?