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
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
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
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