Last active
February 24, 2025 23:16
-
-
Save shadero/e1c49400829cb119a303d40cf72df224 to your computer and use it in GitHub Desktop.
私の名前はこのスクリプトで作りました。
This file contains hidden or 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
# MIT LICENSE: Copyright (c) 2020, yanorei32 All rights reserved. | |
import random | |
base = list("でっどぷろとたいぷえちえちしすこんしゃっきん") | |
def getName(length=4): | |
return ''.join([random.choice(base) for _ in range(length)]) | |
def main(): | |
for _ in range(200): | |
print(getName(4)) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ソースを書いたのは僕ですが
"でっどぷろとたいぷえちえちしすこんしゃっきん"
を考えたのは僕では有りません。
contributors: @Tayu0404, @shadero