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.
する代わりに
for i in range(begin, end):
私は何かをしたい
for i in begin+1, begin+2, begin, begin+3 through end:
これがまったく理にかなっているとしたら?
for i in [begin+1, begin+2, begin] + range(begin+3, end):