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.
これはスタンパーです。次のシーケンスを作成するにはどうすればよいですか。
x = 3,4,9,10, ..., 6k+3, 6k+4
だから私はそれを他の場所で使うことができます:
y = [something(i) for i in x]
何か案は?一つも思い浮かばない。
うーん、私はこれをやってしまった
def indicesGenerator(N): for i in xrange(0, N, 6): yield i+3 yield i+4