Re: Practice Python

2017-05-10 Thread Ian Kelly
On Mon, May 8, 2017 at 3:50 AM, Lutz Horn wrote: > A strange way to publish code. Not if your goal is to drive traffic toward your YouTube channel. -- https://mail.python.org/mailman/listinfo/python-list

Re: Practice Python

2017-05-10 Thread Andre Müller
Am 10.05.2017 um 14:18 schrieb Chris Angelico: > On Wed, May 10, 2017 at 10:11 PM, Andre Müller wrote: >> 1.) a short example for Python 3, but not exactly what they want. >> >> def square(numbers): >> yield from sorted(n**2 for n in numbers) >> >> numberlist = [99, 4, 3, 5, 6, 7, 0] >> resu

Re: Practice Python

2017-05-10 Thread Chris Angelico
On Wed, May 10, 2017 at 10:11 PM, Andre Müller wrote: > 1.) a short example for Python 3, but not exactly what they want. > > def square(numbers): > yield from sorted(n**2 for n in numbers) > > numberlist = [99, 4, 3, 5, 6, 7, 0] > result = list(square(numberlist)) If you're going to use sort

Re: Practice Python

2017-05-10 Thread Andre Müller
Hello, 1.) a short example for Python 3, but not exactly what they want. def square(numbers): yield from sorted(n**2 for n in numbers) numberlist = [99, 4, 3, 5, 6, 7, 0] result = list(square(numberlist)) To solve this tutorial, you need a different way. I'm just showing how sexy Python 3 i

Re: Practice Python

2017-05-08 Thread Lutz Horn
Python - Exercise 5 Do you want us to solve these problems for you? The answers here: https://www.youtube.com/watch?v=nwHPM9WNyw8&t=36s A strange way to publish code. Lutz -- https://mail.python.org/mailman/listinfo/python-list

Practice Python

2017-05-07 Thread gyrhgyrh100
Python - Exercise 5 1. Write a function that gets a list (list) of numbers. The function returns a new list of ordered square numbers from the smallest to grow. For example, for the list [2, 4, 5, 3, 1] the function returns [25, 16, 9, 4, 1]. 2. Write a function that receives a list (list) and a

Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-28 Thread Umar Yusuf
Websites to learn python programming? Try these links:- http://umar-yusuf.blogspot.com.ng/2016/03/70-free-python-programming-language.html http://www.sololearn.com/Course/Python/ http://www.afterhoursprogramming.com/tutorial/Python/Overview/ http://www.pyschools.com/ -- https://mail.python.or

Re: Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-24 Thread Sayth Renshaw
On Tuesday, 21 June 2016 21:03:28 UTC+10, Pushpanth Gundepalli wrote: > Guys, can you please share me some sites where we can practice python > programs for beginners and Intermediate. Here are some good beginner projects https://knightlab.northwestern.edu/2014/06/05/five-mini-progr

Re: Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-23 Thread Cousin Stanley
DFS wrote: > On 6/23/2016 11:11 AM, Cousin Stanley wrote: >> DFS wrote: >> >>> Here's a fun one: scraping data off a website, >>> and storing it in a SQLite database file. >>> >> >> After testing your example code here I found >> that the length of the categories list >> was 1 less th

Re: Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-23 Thread Cousin Stanley
DFS wrote: > Here's a fun one: scraping data off a website, > and storing it in a SQLite database file. > After testing your example code here I found that the length of the categories list was 1 less than the terms list after applying dropwords in the terms list comprehensio

RE: Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-23 Thread Joe Gulizia
From: Python-list on behalf of Pushpanth Gundepalli Sent: Thursday, June 23, 2016 12:35 AM To: python-list@python.org Subject: Re: Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate. On

Re: Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-22 Thread Pushpanth Gundepalli
On Tuesday, June 21, 2016 at 4:33:28 PM UTC+5:30, Pushpanth Gundepalli wrote: > Guys, can you please share me some sites where we can practice python > programs for beginners and Intermediate. Thank you for ur valuable suggestions.. Actually i have done practising the exercises on codea

Re: Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-22 Thread John Wong
On Wed, Jun 22, 2016 at 4:45 AM, Nick Sarbicki wrote: > On Wed, Jun 22, 2016 at 9:42 AM Miki Tebeka wrote: > > > IMO you can do that at https://www.codecademy.com/learn/python > > > > Some people might think differently but I wouldn't recommend a python > course which teaches 2.7 over 3.x. > > p

Re: Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-22 Thread Nick Sarbicki
On Wed, Jun 22, 2016 at 9:42 AM Miki Tebeka wrote: > IMO you can do that at https://www.codecademy.com/learn/python > Some people might think differently but I wouldn't recommend a python course which teaches 2.7 over 3.x. It bugs me that learnpythonthehardway and codecademy - probably 2 of the

Re: Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-22 Thread Miki Tebeka
On Tuesday, June 21, 2016 at 2:03:28 PM UTC+3, Pushpanth Gundepalli wrote: > Guys, can you please share me some sites where we can practice python > programs for beginners and Intermediate. IMO you can do that at https://www.codecademy.com/learn/python -- https://mail.python.org/m

Re: Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-21 Thread jfong
Pushpanth Gundepalli at 2016/6/21 7:03:28PM wrote: > Guys, can you please share me some sites where we can practice python > programs for beginners and Intermediate. Is this you want? http://pythontutor.com/ --Jach -- https://mail.python.org/mailman/listinfo/python-list

Re: Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-21 Thread Rick Johnson
On Tuesday, June 21, 2016 at 6:03:28 AM UTC-5, Pushpanth Gundepalli wrote: > Guys, can you please share me some sites where we can practice python > programs for beginners and Intermediate. Have you tried googling for "python interactive tutorial"? Someone had created one simila

Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate.

2016-06-21 Thread Pushpanth Gundepalli
Guys, can you please share me some sites where we can practice python programs for beginners and Intermediate. -- https://mail.python.org/mailman/listinfo/python-list

Re: How do you practice Python?

2006-06-03 Thread James
Any code which requires serious algorithmic work I write and test in Python before converting into Java - it's so much easier to use Python's datatypes and interpreter to get things right before having to deal with Java's clunky class libraries. James On 02/06/06, Norbert Kaufmann <[EMAIL PROTECT

Re: How do you practice Python?

2006-06-03 Thread James
Thirded here. Perhaps better for me is that although I program client-side Java for my job, as much of the backend as possible I code in Python, which makes it easier to do a lot of data processing stuff much simpler than Java would. And it's let me use and understand all of the new features of the

Re: How do you practice Python?

2006-06-02 Thread sam
ed, when I signed the standard intellectual property forms. Sam Schulenburg Jarek Zgoda wrote: > [EMAIL PROTECTED] napisa³(a): > > >>In our field, we don't always get to program in the language we'd like > >>to program. So... how do you practice Python in this cas

Re: How do you practice Python?

2006-06-02 Thread Jarek Zgoda
[EMAIL PROTECTED] napisał(a): >>In our field, we don't always get to program in the language we'd like >>to program. So... how do you practice Python in this case? > > Write code. Lots of it. Work on a project at home, contribute to > something open source, use

Re: How do you practice Python?

2006-06-02 Thread [EMAIL PROTECTED]
Ray wrote: > In our field, we don't always get to program in the language we'd like > to program. So... how do you practice Python in this case? Write code. Lots of it. Work on a project at home, contribute to something open source, use it to write support scripts at work, whate

Re: How do you practice Python?

2006-06-02 Thread Ant
> In our field, we don't always get to program in the language we'd like For sure! > to program. So... how do you practice Python in this case? Say you're > doing J2EE right now. How do you practice Python to keep your skills > sharp? Well, we have to use J2EE at wo

Re: How do you practice Python?

2006-06-02 Thread Doug Bromley
On 6/2/06, Norbert Kaufmann <[EMAIL PROTECTED]> wrote: Ray wrote:[...]> Um, I mean, what if you have to use something other than> Python/Jython/IronPython? :) How do you keep your Python skill sharp?>You could use IPython as your primary shell. Than you have the opportunity to do all these nasty au

Re: How do you practice Python?

2006-06-02 Thread Norbert Kaufmann
Ray wrote: [...] > Um, I mean, what if you have to use something other than > Python/Jython/IronPython? :) How do you keep your Python skill sharp? > You could use IPython as your primary shell. Than you have the opportunity to do all these nasty automation tasks -- create test data, deploy confi

Re: How do you practice Python?

2006-06-01 Thread Harry George
"Ray" <[EMAIL PROTECTED]> writes: > bruno at modulix wrote: > > > In our field, we don't always get to program in the language we'd like > > > to program. So... how do you practice Python in this case? Say you're > > > doing J2EE rig

Re: How do you practice Python?

2006-06-01 Thread bruno at modulix
Ray wrote: > bruno at modulix wrote: > >>>In our field, we don't always get to program in the language we'd like >>>to program. So... how do you practice Python in this case? Say you're >>>doing J2EE right now. >> >>Hopefully not ! >

Re: How do you practice Python?

2006-06-01 Thread Ray
bruno at modulix wrote: > > In our field, we don't always get to program in the language we'd like > > to program. So... how do you practice Python in this case? Say you're > > doing J2EE right now. > > Hopefully not ! I am :-( > > How do you

Re: How do you practice Python?

2006-06-01 Thread bruno at modulix
Ray wrote: > In our field, we don't always get to program in the language we'd like > to program. So... how do you practice Python in this case? Say you're > doing J2EE right now. Hopefully not ! > How do you practice Python to keep your skills > sharp? How *would

How do you practice Python?

2006-06-01 Thread Ray
In our field, we don't always get to program in the language we'd like to program. So... how do you practice Python in this case? Say you're doing J2EE right now. How do you practice Python to keep your skills sharp? I liked Python Challenge, but there were too many PIL there, s