def test_rte_code_block():
values = [1, 2, 3]
for value in values:
if value <= 2 and value >= 1 and value != 0:
print(f"value={value} -> valid")
symbols = {
"less_or_equal": "<=",
"greater_or_equal": ">=",
"not_equal": "!=",
"arrow": "->",
"html_like": "<tag>",
"ampersand": "&",
}
return symbols
if __name__ == "__main__":
result = test_rte_code_block()
print(result)