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.
2 つの異なるジェネレーターをマージして、反復ごとに異なるジェネレーターが生成されるようにするにはどうすればよいですか?
>>> gen = merge_generators_in_between("ABCD","12") >>> for val in gen: ... print val A 1 B 2 C D
どうすればこれを達成できますか?でその関数が見つかりませんでしたitertools。
itertools