Re: [Tutor] learn python to build payment processor

2018-07-12 Thread Anil Duggirala
> Not because you're not smart > enough but because none of us is smart enough. You sound like my brother. ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] learn python to build payment processor

2018-07-12 Thread Mats Wichmann
On 07/11/2018 08:34 PM, boB Stepp wrote: > On Wed, Jul 11, 2018 at 9:01 PM Mats Wichmann wrote: > > From: >> (see https://www.python.org/dev/peps/pep-0020/) > It says: > > "Abstract > Long time Pythoneer Tim Peters succinctly channels the BDFL's guiding > principles for Python's design into 20 a

Re: [Tutor] learn python to build payment processor

2018-07-12 Thread Leam Hall
On 07/11/2018 05:41 PM, Anil Duggirala wrote: You don;t tell us your experience level. Im not a complete newbie, I understand basic programming. Anil, if you are doing this for a class project, or as a way to learn Python, then I applaud you! It will take time and be difficult but you will

Re: [Tutor] learn python to build payment processor

2018-07-12 Thread Anil Duggirala
I appreciate your help very much Alan, I have homework to do now, thanks again, ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] learn python to build payment processor

2018-07-11 Thread boB Stepp
On Wed, Jul 11, 2018 at 9:01 PM Mats Wichmann wrote: From: > (see https://www.python.org/dev/peps/pep-0020/) It says: "Abstract Long time Pythoneer Tim Peters succinctly channels the BDFL's guiding principles for Python's design into 20 aphorisms, only 19 of which have been written down." What

Re: [Tutor] learn python to build payment processor

2018-07-11 Thread Mats Wichmann
On 07/11/2018 07:55 AM, Anil Duggirala wrote: > hello, > I would like to ask what for recommendations on books/resources to learn > python to build a payment processor. I need to understand how python works > with databases, user authentication and how a user can have an account page > to view a

Re: [Tutor] learn python to build payment processor

2018-07-11 Thread Alan Gauld via Tutor
On 11/07/18 22:41, Anil Duggirala wrote: > Will the Django tutorial guide me toward connecting > Python and SQL? Yes, Django has its own mechanism for doing that and the tutorials will cover it. > Could you share a link to your SQL tutorial See the signature. On the left hand contents frame

Re: [Tutor] learn python to build payment processor

2018-07-11 Thread Anil Duggirala
> You don;t tell us your experience level. Im not a complete newbie, I understand basic programming. > If you can already program in any other language then just > use the standard Python tutorial on python.org. I will do this, thanks! >Then progress > to the Django tutorial on their web site.

Re: [Tutor] learn python to build payment processor

2018-07-11 Thread Alan Gauld via Tutor
On 11/07/18 14:55, Anil Duggirala wrote: > I would like to ask what for recommendations on > books/resources to learn python to build a payment processor. You don;t tell us your experience level. If you can already program in any other language then just use the standard Python tutorial on pyth

[Tutor] learn python to build payment processor

2018-07-11 Thread Anil Duggirala
hello, I would like to ask what for recommendations on books/resources to learn python to build a payment processor. I need to understand how python works with databases, user authentication and how a user can have an account page to view all his details; something like you would see when you lo

Re: [Tutor] Learn Python The Hard Way, Ex19-3

2012-02-14 Thread amt
Hello! I managed in the end to have more than 10 ways of doing it, moving now to Exercise 20. Thank you so much for helping me out every time. Regards, amt ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http

Re: [Tutor] Learn Python The Hard Way, Ex19-3

2012-02-11 Thread Alan Gauld
On 11/02/12 22:26, amt wrote: Write at least one more function of your own design, and run it 10 different ways. Put it in a dictionary and call it by name... Put it in a list of functions and call it as part of a loop. Create a lambda with it as expression and then call the lambda Just 3 m

Re: [Tutor] Learn Python The Hard Way, Ex19-3

2012-02-11 Thread Brian van den Broek
On 12 Feb 2012 00:29, "amt" <0101...@gmail.com> wrote: > > Hello! I'm currently stuck at the Extra Credit 3 from LPTHW. > > Link to the actual exercise: http://learnpythonthehardway.org/book/ex19.html > The exercise: > Write at least one more function of your own design, and run it 10 > different w

Re: [Tutor] Learn Python The Hard Way, Ex19-3

2012-02-11 Thread Alan Gauld
On 11/02/12 22:26, amt wrote: Write at least one more function of your own design, > and run it 10 different ways. It's hard to know without reading the book what the author has in mind but I'll add yet another option to the mix. Create a new function that takes your function as an argument an

Re: [Tutor] Learn Python The Hard Way, Ex19-3

2012-02-11 Thread Dave Angel
On 02/11/2012 05:26 PM, amt wrote: Hello! I'm currently stuck at the Extra Credit 3 from LPTHW. Link to the actual exercise:http://learnpythonthehardway.org/book/ex19.html The exercise: Write at least one more function of your own design, and run it 10 different ways. Code from the book: def c

[Tutor] Learn Python The Hard Way, Ex19-3

2012-02-11 Thread amt
Hello! I'm currently stuck at the Extra Credit 3 from LPTHW. Link to the actual exercise:http://learnpythonthehardway.org/book/ex19.html The exercise: Write at least one more function of your own design, and run it 10 different ways. Code from the book: def cheese_and_crackers(cheese_count, boxe

Re: [Tutor] Learn Python

2009-12-12 Thread Albert Sweigart
I'd recommend my book, "Invent Your Own Computer Games with Python", which is available for free at: http://inventwithpython.com Each chapter focuses on the complete source code for a small game, and teaches programming concepts from the code. -Al > Hi > I'm trying to learn python but I have di

Re: [Tutor] Learn Python

2009-12-11 Thread Alan Gauld
"Grigor Kolev" wrote I'm trying to learn python but I have difficulties with classes. If someone has a code that shows the basic concepts and relationships in the classes, please send it to me. Most tutorials should show that. You can try the OOP topic in mine if you like, also the Case st

[Tutor] Learn Python

2009-12-11 Thread Grigor Kolev
Hi I'm trying to learn python but I have difficulties with classes. If someone has a code that shows the basic concepts and relationships in the classes, please send it to me. I will be happy if code possess very much comments -- Grigor Kolev ___ Tutor