Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ランダムな文字列を生成するためのPythonのモジュールはありますか? たとえば、Windows のインストール時にキーを生成する必要があります。
取得したい文字列の形式を指定していないので、問題ないと思いますので、単純に UUID を使用することをお勧めします。
>>> import uuid >>> str(uuid.uuid4()) > '3afc84bb-6d73-4482-806a-6b3a29e43bca'