I have an app that I've been working on, but now I need to get this line converted into Python.
return (highValue > 21) ? lowValue : highValue;
The above says if the number highValue is greater than 21, return lowValue, and if it is lower than 21, return highValue. How can I convert this into Python?
Thanks!