Skip to content

Instantly share code, notes, and snippets.

@shadero
Last active December 9, 2021 11:30
Show Gist options
  • Save shadero/e1c49400829cb119a303d40cf72df224 to your computer and use it in GitHub Desktop.
Save shadero/e1c49400829cb119a303d40cf72df224 to your computer and use it in GitHub Desktop.
私の名前はこのスクリプトで作りました。
# 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()
@yanorei32
Copy link

yanorei32 commented Jun 15, 2020

ソースを書いたのは僕ですが

"でっどぷろとたいぷえちえちしすこんしゃっきん"

を考えたのは僕では有りません。

contributors: @Tayu0404, @shadero

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment