Answers for "how to know if the numbers is par in python"

0

how to know if the numbers is par in python

if num % 2 == 0:
    pass # Even 
else:
    pass # Odd
Posted by: Guest on November-24-2020

Code answers related to "how to know if the numbers is par in python"

Python Answers by Framework

Browse Popular Code Answers by Language