bin/chars-to-phred @ afc77c6b25b1 default tip

More
author Steve Losh <steve@stevelosh.com>
date Mon, 01 Dec 2025 13:10:26 -0500
parents 890e2d48b6f7
children (none)
#!/usr/bin/env python3

import sys

print([ord(ch) - ord("!") for ch in sys.stdin.read().rstrip('\n')])