You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
"""
|
|
Contains various helper functions for dealing with binary or hex values in Python.
|
|
"""
|
|
|
|
|
|
def get_bin(value, padn=0, sep=None):
|
|
"""Prints a binary textual representation of a value"""
|
|
return format(value, 'b').zfill(padn) |