[Tutor] Learning something new.

2019-05-23 Thread Jessica Rabbit
Hello, my name is Jessica and I hope I found the right e mail to help me learn of to write in code and eventually learn to hack. I'm very new to this sode of the internet and would like to slowly learn. I've barely accomplished anything in my life: so i would love to able to know how to do somethi

Re: [Tutor] Learning something new.

2019-05-23 Thread Alan Gauld via Tutor
On 23/05/2019 08:38, Jessica Rabbit wrote: > Hello, my name is Jessica and I hope I found the right e mail to help me > learn of to write in code and eventually learn to hack. Hi Jessica and welcome to the tutor list. > know how to do something that my father can. If this email is read by > some

[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

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

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