Re: 3 random numbers

2019-01-15 Thread Alister via Python-list
On Tue, 15 Jan 2019 06:13:00 -0800, Gengyang Cai wrote: > I managed to solve the problem and also another problem with different 3 > random numbers. But it wasn't a very good question in the first place, i > admit > > Indeed it is a poorly write exercise & I

Re: 3 random numbers

2019-01-15 Thread Gengyang Cai
I managed to solve the problem and also another problem with different 3 random numbers. But it wasn't a very good question in the first place, i admit On Tuesday, January 15, 2019 at 9:55:00 PM UTC+8, Rick Johnson wrote: > Gengyang Cai wrote: > > Can anyone understand it an

Re: 3 random numbers

2019-01-14 Thread Cameron Simpson
On 14Jan2019 21:29, caig...@gmail.com wrote: So I was given this question to be solved in Python 3 : Pick any 3 random ascending numbers and write out a loop function that prints out all 3 numbers. This was the code and solution presented to me. Can anyone understand it and explain it to me

Re: 3 random numbers

2019-01-14 Thread Spencer Graves
On 2019-01-14 23:29, caig...@gmail.com wrote: So I was given this question to be solved in Python 3 : Pick any 3 random ascending numbers and write out a loop function that prints out all 3 numbers. This was the code and solution presented to me. Can anyone understand it and explain it to

3 random numbers

2019-01-14 Thread caigy84
So I was given this question to be solved in Python 3 : Pick any 3 random ascending numbers and write out a loop function that prints out all 3 numbers. This was the code and solution presented to me. Can anyone understand it and explain it to me please ? I have looked at it but cannot see how