Skip to content

Instantly share code, notes, and snippets.

@bcr
Created February 3, 2023 18:03
Show Gist options
  • Save bcr/d59528f1b990f514fb07c1a08fb310bb to your computer and use it in GitHub Desktop.
Save bcr/d59528f1b990f514fb07c1a08fb310bb to your computer and use it in GitHub Desktop.
PIN encoding
#!/usr/bin/env python3
pin = input("Please enter a five digit numeric PIN > ")
integer_pin = int(pin)
print(f"{integer_pin:021_b}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment