Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

Determinate if an number it's even or odd

Solution 😎

# Declare two boolean variables
number = 73

print('Number:', number)

# Check the conditions and make decisions
if number % 2 == 0:
    print(number, "is even.")
else:
    print(number, "is odd.")

In this code, we first define a number with an integer value. We then use the modulo operator (%) to check if the number is divisible by 2. If the remainder of the division is 0, the number is even, so we print a message indicating that. Otherwise, the number is odd, so we print a message indicating that.

Video Solution 📹

Determinate if an number it's even or odd

<iframe width="560" height="315" src="https://www.youtube.com/embed/wQafTxCE8eU" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>