Re: [Tutor] Rearranging a list of numbers with corresponding index (RESOLVED)

2015-03-13 Thread Matthew Ruffalo
On 03/13/2015 11:55 AM, Ken G. wrote: > I will be studying this also. I am still using Python 2.7.6 as that is > the latest as provided by Ubuntu 14.04.1. FYI, Python 3.4 is installed by default in Ubuntu 14.04(.1). You have to invoke it as 'python3' though. MMR... __

Re: [Tutor] Rearranging a list of numbers with corresponding index (RESOLVED)

2015-03-13 Thread Ken G.
On 03/13/2015 10:38 AM, Dave Angel wrote: On 03/13/2015 09:57 AM, Ken G. wrote: I have been keeping track of numbers drawn in our local lotto drawings into a list format as shown in a short example below. Using such list, I am able to determine how often a number appears within the last 100 pl

Re: [Tutor] Rearranging a list of numbers with corresponding index

2015-03-13 Thread Ken G.
On 03/13/2015 10:21 AM, Peter Otten wrote: Ken G. wrote: I have been keeping track of numbers drawn in our local lotto drawings into a list format as shown in a short example below. Using such list, I am able to determine how often a number appears within the last 100 plus drawings. The leng

Re: [Tutor] Rearranging a list of numbers with corresponding index

2015-03-13 Thread Dave Angel
On 03/13/2015 09:57 AM, Ken G. wrote: I have been keeping track of numbers drawn in our local lotto drawings into a list format as shown in a short example below. Using such list, I am able to determine how often a number appears within the last 100 plus drawings. The length of my lists range fr

Re: [Tutor] Rearranging a list of numbers with corresponding index

2015-03-13 Thread Peter Otten
Ken G. wrote: > I have been keeping track of numbers drawn in our local lotto drawings > into a list format as shown in a short example below. Using such list, I > am able to determine how often a number appears within the last 100 plus > drawings. > > The length of my lists range from 5, 15, 35,

[Tutor] Rearranging a list of numbers with corresponding index

2015-03-13 Thread Ken G.
I have been keeping track of numbers drawn in our local lotto drawings into a list format as shown in a short example below. Using such list, I am able to determine how often a number appears within the last 100 plus drawings. The length of my lists range from 5, 15, 35, 59and 75 long. I will