Re: [Tutor] I'm having a small problem with my code

2019-05-24 Thread Alan Gauld via Tutor
Forwarding to the list. Always use Reply-All or Reply-List when responding to the list. Otherwise it only goes to the member who posted. Alan G. On 24/05/2019 10:20, David Lifschitz wrote: > Hi. > I'm learning the processes of python so I'm trying to figure out how > to sort it manually. > > On

Re: [Tutor] I'm having a small problem with my code

2019-05-23 Thread Alan Gauld via Tutor
On 23/05/2019 13:16, David Lifschitz wrote: > The next job of the code is to sort the list of numbers that were inputted > in an ascending fashion. You are aware that Python lists have a built in sort method? It will be more efficient than anything you can create yourself in Python. Assuming you

Re: [Tutor] I'm having a small problem with my code

2019-05-23 Thread Cameron Simpson
On 23May2019 15:16, David Lifschitz wrote: I am currently working on a project for myself. The code posted here is supposed to ask the user for an amount of numbers, what those numbers are, and places those numbers in a list. The next job of the code is to sort the list of numbers that were inp

[Tutor] I'm having a small problem with my code

2019-05-23 Thread David Lifschitz
Hi. I am currently working on a project for myself. The code posted here is supposed to ask the user for an amount of numbers, what those numbers are, and places those numbers in a list. The next job of the code is to sort the list of numbers that were inputted in an ascending fashion. There is no