Category Archives: Python

Ternary operator in Python

Here’s how you translate the following C code int max(int a, int b) { return (a > b ? a : b); } to Python: def max(a, b): return a if a > b else b The general syntax is: … Continue reading

Posted in English, Programming, Python | Leave a comment