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.
iterPythonで関数を使用することの用途は何ですか?
iter
代わりに:
for i in range(8): print i
私も使用できますiter:
for iter in range(8): print iter