Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

Python Program to Check Evil Number

Posted in Python Tutorial
Updated on Oct 31, 2024
By Mari Selvan
πŸ‘οΈ 61 - Views
⏳ 4 mins
πŸ’¬ 1 Comment
Python Program to Check Evil Number

Photo Credit to CodeToFun

πŸ™‹ Introduction

In the realm of programming, understanding the properties of numbers is a fascinating journey. One interesting concept is that of Evil Numbers.

An Evil Number is a non-negative integer that has an even number of '1' bits in its binary representation.

In this tutorial, we will explore a Python program designed to check whether a given number is an Evil Number.

The program involves converting the decimal number to its binary representation and counting the number of '1' bits.

πŸ“„ Example

Let's delve into the Python code that accomplishes this task.

is_evil_number.py
Copied
Copy To Clipboard
# Function to count the number of set bits (1s) in binary representation
def count_set_bits(number):
    count = 0
    while number:
        count += number & 1
        number >>= 1
    return count

# Function to check if a number is an Evil Number
def is_evil_number(number):
    # Count the number of set bits in the binary representation
    set_bits_count = count_set_bits(number)

    # If the count of set bits is even, it is an Evil Number
    return set_bits_count % 2 == 0

# Driver program
if __name__ == "__main__":
    # Replace this value with the number you want to check
    number = 15

    # Call the function to check if the number is an Evil Number
    if is_evil_number(number):
        print(f"{number} is an Evil Number.")
    else:
        print(f"{number} is not an Evil Number.")

πŸ’» Testing the Program

To test the program with different numbers, modify the value of number in the code.

Output
15 is an Evil Number.

Run the script to check if the specified number is an Evil Number.

🧠 How the Program Works

  1. The program defines a function count_set_bits that takes an integer number as input and returns the count of set bits (1s) in its binary representation.
  2. The function is_evil_number checks if the count of set bits is even, indicating that the number is an Evil Number.
  3. Inside the main program, replace the value of number with the desired number you want to check.
  4. The program calls the is_evil_number function and prints the result.

πŸ“ Between the Given Range

Let's explore the python code that checks for Evil Numbers in the specified range.

is_evil_number.py
Copied
Copy To Clipboard
# Function to check if a number is Evil
def is_evil_number(num):
    binary_representation = bin(num)[2:]
    count_of_ones = binary_representation.count('1')
    return count_of_ones % 2 == 0

# Range from 1 to 10
start_range = 1
end_range = 10

# Display Evil Numbers in the range
evil_numbers = [num for num in range(start_range, end_range + 1) if is_evil_number(num)]

print(f"Evil numbers in the range {start_range} to {end_range}:")
for evil_num in evil_numbers:
    print(evil_num, end=" ")

πŸ’» Testing the Program

Output
Evil numbers in the range 1 to 10:
3 5 6 9 10

The range for this program is fixed from 1 to 10. To test the program, simply run it, and it will display the Evil Numbers in that range.

🧠 How the Program Works

  1. The program defines a function is_evil_number that checks if a given number is an Evil Number based on its binary representation.
  2. It then iterates through the specified range (from 1 to 10), checks each number, and collects Evil Numbers in a list.
  3. Finally, it prints the Evil Numbers in the specified output format.

🧐 Understanding the Concept of Evil Number

Before delving into the code, let's understand the concept of Evil Numbers. An Evil Number is a non-negative integer that has an even number of '1' bits in its binary representation.

🎒 Optimizing the Program

While the provided program is effective, consider exploring and implementing alternative approaches or optimizations for checking Evil Numbers.

Feel free to incorporate and modify this code as needed for your specific use case. Happy coding!

πŸ‘¨β€πŸ’» Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
πŸ‘‹ Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
10 months ago

If you have any doubts regarding this article (Python Program to Check Evil Number), please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy