00:01
We are going to be creating a python program that takes 15 numbers from a user, stores them in an array.
00:11
And from that, those 15 numbers organize them based on how many even numbers and how many odd numbers.
00:22
So to do this, we are going to create an empty array and call it user store.
00:30
We indicate an empty array in python by simply writing empty brackets.
00:38
Two brackets without any name.
00:43
Next we are going to utilize variables and then go to zero.
00:51
We're going to name them one, name one of them, even numbers, and another one odd number.
01:01
Next we are going to create a four loop.
01:06
So condition is with a number in range 15, which our entry is.
01:16
For testing purposes, we'll 4 to 3 to make sure that it's working.
01:24
We are going to then ask the user to input variables.
01:32
We're going to input, input, integer surrounded by parentheses.
01:41
An input converts the user input from a string to an integer.
01:47
So we're going to type out a message and write enter integer.
01:54
Write it on a new line...