Created
February 5, 2025 12:22
-
-
Save ichux/e44336f8432e77d7c4203e403a992c24 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def shown(data): | |
sb = 73 | |
sp = [data[i : i + sb] for i in range(0, len(data), sb)] | |
print(' = (\n "{}"\n)'.format('"\n "'.join(sp))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment