Write and test a function hydroxide that takes a chemical formula as a parameter and returns True if the chemical is a hydroxide (i.e. ends in OH) and returns False otherwise.
Example:
Enter a chemical formula: NaOH
NaOH is a hydroxide.
Enter a chemical formula: H2O
H2O is not a hydroxide.