3. Syntax of a ListΒΆ
An empty list
A list with three grades.
Accessing a grade.
Changing the first grade.
Average of 5 grades.
Note:
x += 1
is the same asx = x + 1
.
You have attempted of activities on this page
An empty list
A list with three grades.
Accessing a grade.
Changing the first grade.
Average of 5 grades.
Note: x += 1
is the same as x = x + 1
.