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.
簡単なコードがあるとしましょう。
list = [1,3,4,5,6,7,8] for i, val in enumerate(list): print(val)
から始めたいと思いi=2ます。これを最も簡単な方法で行うにはどうすればよいですか?
i=2
for(int i=2; i<list.lenght; i++)のようなものjava。
for(int i=2; i<list.lenght; i++)
java