- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
if "=" in cell_content:
command["relation"] = "eq"
elif "≠" in cell_content or "!=" in cell_content:
command["relation"] = "ne"
elif "<" in cell_content or "<" in cell_content:
command["relation"] = "lt"
elif "≤" in cell_content:
command["relation"] = "le"
elif ">" in cell_content or ">" in cell_content:
command["relation"] = "gt"
elif "≥" in cell_content:
command["relation"] = "ge"