Created
July 4, 2018 07:04
-
-
Save tobynet/6934f44a0a817ca2f95068b6c80e3ab2 to your computer and use it in GitHub Desktop.
#54文字の文学賞 のジェネレータ https://ujiqn.github.io/54-novel/ に入れる用スクリプト(ランダム版)
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
#!/usr/bin/env python | |
WIDTH = 9 | |
HEIGHT = 6 | |
import random | |
#src = "┣╋┻┳┫" | |
src = "☐⊡▤▥▩▨▧▦▣" | |
# string -> [shuffled string] | |
lines = [ "".join(random.choices(src,k=WIDTH)) for _ in range(HEIGHT) ] | |
print("".join(lines)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
動作例:
https://ujiqn.github.io/54-novel/ での例: