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.
プレフィックスで可能なすべての番号を生成する必要があります:
import random prefix = "05" print prefix + #all Possible Numbers Here
乱数を生成し、それに接頭辞としてgive文字列を付けるにはどうすればよいですか?例としてコードを使用すると、次のことができます。
import random prefix = '05' print prefix + str(random.randrange(1, 100)
これにより、1から100までのランダムな整数が選択されるため、それに応じて調整できます。ランダムな非整数の場合は、それを。に置き換えrandom.random()ます。
random.random()