00:01
In this video, we're going to be calculating integers, the averages of three integers.
00:06
So to get started, we need a list, so we'll call it user.
00:12
It'll be an empty list.
00:13
And next we want to create a core loop in the range of three so that we can get three numbers.
00:23
Then we will ask the user to enter a number.
00:28
We want to make sure we cast the input into an integer because initially the input is a string.
00:40
So it's easier to enter a number.
00:47
Then you want to append the number.
00:54
And append in python means we're adding this number to our list up here.
00:59
So we're adding our variable num.
01:04
And that looks like it should be it...