Skip to content

Instantly share code, notes, and snippets.

@Neko288
Created December 12, 2021 03:22
Show Gist options
  • Save Neko288/85cbb6112c469c42cf1dca4023f75cf2 to your computer and use it in GitHub Desktop.
Save Neko288/85cbb6112c469c42cf1dca4023f75cf2 to your computer and use it in GitHub Desktop.
数字と文字で名前を自動生成します。(パッケージとして使えます)
import random, string
def naming(n):
randlst = [random.choice(string.ascii_letters + string.digits) for i in range(n)]
return ''.join(randlst)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment