for-loops

Learn how to use for-loops for counting and indexing.

We'll cover the following...

For-loops in Java are identical to those in C and Javascript, and if you are familiar with those languages, you may skip this section. If you are most familiar with Python, you’ll want to work through this lesson carefully. Here’s a for-loop in Java:

class ForExample {
public static void main(String[] args) {
for(int i = 1; i < 11; i++) {
System.out.println(i);
}
}
}

Python for-loops iterate ...