Re: Write a function sorting(L).

2017-04-21 Thread Tim Chase
On 2017-04-21 12:58, Mohammed Ahmed wrote: > Write a function sorting(L) that takes a list of numbers and > returns the list with all elements sorted in ascending order. > Note: do not use the sort built in function > > it is a python question No "sort" fun

Re: Write a function sorting(L).

2017-04-21 Thread bartc
On 21/04/2017 21:04, Mohammed Ahmed wrote: On Friday, April 21, 2017 at 10:02:55 PM UTC+2, Chris Angelico wrote: On Sat, Apr 22, 2017 at 5:58 AM, Mohammed Ahmed <moh.ahm1...@gmail.com> wrote: Write a function sorting(L) that takes a list of numbers and returns the list with all el

Re: Write a function sorting(L).

2017-04-21 Thread Michael Torrie
On 04/21/2017 01:58 PM, Mohammed Ahmed wrote: > Write a function sorting(L) that takes a list of numbers and returns the list > with all > elements sorted in ascending order. > Note: do not use the sort built in function > > it is a python question Sounds like a basic homewor

Re: Write a function sorting(L).

2017-04-21 Thread Rob Gaddi
On 04/21/2017 01:04 PM, Mohammed Ahmed wrote: On Friday, April 21, 2017 at 10:02:55 PM UTC+2, Chris Angelico wrote: On Sat, Apr 22, 2017 at 5:58 AM, Mohammed Ahmed <moh.ahm1...@gmail.com> wrote: Write a function sorting(L) that takes a list of numbers and returns the list with all el

Re: Write a function sorting(L).

2017-04-21 Thread Chris Angelico
On Sat, Apr 22, 2017 at 6:04 AM, Mohammed Ahmed <moh.ahm1...@gmail.com> wrote: > On Friday, April 21, 2017 at 10:02:55 PM UTC+2, Chris Angelico wrote: >> On Sat, Apr 22, 2017 at 5:58 AM, Mohammed Ahmed <moh.ahm1...@gmail.com> >> wrote: >> > Write a function sor

Re: Write a function sorting(L).

2017-04-21 Thread Mohammed Ahmed
On Friday, April 21, 2017 at 10:02:55 PM UTC+2, Chris Angelico wrote: > On Sat, Apr 22, 2017 at 5:58 AM, Mohammed Ahmed <moh.ahm1...@gmail.com> wrote: > > Write a function sorting(L) that takes a list of numbers and returns the > > list with all > > elements sorted i

Re: Write a function sorting(L).

2017-04-21 Thread Mohammed Ahmed
On Friday, April 21, 2017 at 10:01:40 PM UTC+2, alister wrote: > On Fri, 21 Apr 2017 12:58:52 -0700, Mohammed Ahmed wrote: > > > Write a function sorting(L) that takes a list of numbers and returns the > > list with all elements sorted in ascending order. > > Note: d

Re: Write a function sorting(L).

2017-04-21 Thread alister
On Fri, 21 Apr 2017 12:58:52 -0700, Mohammed Ahmed wrote: > Write a function sorting(L) that takes a list of numbers and returns the > list with all elements sorted in ascending order. > Note: do not use the sort built in function > > it is a python question & the reaso

Re: Write a function sorting(L).

2017-04-21 Thread Chris Angelico
On Sat, Apr 22, 2017 at 5:58 AM, Mohammed Ahmed <moh.ahm1...@gmail.com> wrote: > Write a function sorting(L) that takes a list of numbers and returns the list > with all > elements sorted in ascending order. > Note: do not use the sort built in function > > it i

Write a function sorting(L).

2017-04-21 Thread Mohammed Ahmed
Write a function sorting(L) that takes a list of numbers and returns the list with all elements sorted in ascending order. Note: do not use the sort built in function it is a python question -- https://mail.python.org/mailman/listinfo/python-list