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 では、特定の長さまでの一連の文字のすべての組み合わせで文字列を生成するにはどうすればよいですか?
itertools を使用してすべての組み合わせと順列を生成する方法は知っていますが、動的な長さの文字列を生成する方法がわかりません。
例えば:
a = [0,1] 長さ = 4
結果:
[0000、0001、0010、0011、0100、0101、0110、0111、1000、1001、1101、1110、1111]