mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-04-02 20:06:50 +00:00
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
This commit is contained in:
parent
ab7bcb99bc
commit
5d49809fd5
@ -48,14 +48,14 @@ if __name__ == "__main__":
|
|||||||
def count_zeros_and_ones(binary_number):
|
def count_zeros_and_ones(binary_number):
|
||||||
# Convert the binary number to a string if it's not already
|
# Convert the binary number to a string if it's not already
|
||||||
binary_str = str(binary_number)
|
binary_str = str(binary_number)
|
||||||
|
|
||||||
count_zeros = binary_str.count('0')
|
count_zeros = binary_str.count("0")
|
||||||
count_ones = binary_str.count('1')
|
count_ones = binary_str.count("1")
|
||||||
|
|
||||||
return count_zeros, count_ones
|
return count_zeros, count_ones
|
||||||
|
|
||||||
|
|
||||||
# Example usage
|
# Example usage
|
||||||
binary_number = 1011001
|
binary_number = 1011001
|
||||||
zeros, ones = count_zeros_and_ones(binary_number)
|
zeros, ones = count_zeros_and_ones(binary_number)
|
||||||
print(f"Number of 0s: {zeros}, Number of 1s: {ones}")
|
print(f"Number of 0s: {zeros}, Number of 1s: {ones}")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user