Skip to content

Instantly share code, notes, and snippets.

@BMU-Verlag
Created January 21, 2020 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BMU-Verlag/6a496d7fa8a5410d8fd32b19e4466da6 to your computer and use it in GitHub Desktop.
Save BMU-Verlag/6a496d7fa8a5410d8fd32b19e4466da6 to your computer and use it in GitHub Desktop.
HEADER_SIZE=8
def format_message(message):
if not message:
return None
header = f'{len(message):<{HEADER_SIZE}}'
return f'{header}{message}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment