Create a function that takes an input (e.g. "5 + 4") and returns True if it's a mathematical expression or False if not.
"5 + 4"
True
False
math_expr("4 + 5") ➞ True math_expr("4*6") ➞ True math_expr("4*no") ➞ False
+, -, *, /, %