Re: "Pythoner",Wish me luck!
On Apr 3, 11:39 am, "Hendrik van Rooyen" wrote: > "Matteo" wrote: > > On Apr 3, 9:05 am, Linuxwell wrote: > > >> Starting today I would like to study Python,Wish me luck! > > >Good luck! > > >Don't forget to... > > print 'Hello World!' > > This is better advice than what you may think, > because the interactive interpreter is your very > best friend when studying the language. > > You get there by typing "python" at the command > line, and pressing enter. > > Using it, you will save yourself many hours of > misunderstanding. > > - Hendrik Hi, I'm also begginer in python; i did few basic programs about graph etc.. my question is : what benefit is using interactive intrepreter ? i come from java backround, so I use eclipse for python as well. I start my program, it does it's job, and that's it. (after some debugging ofc) -- http://mail.python.org/mailman/listinfo/python-list
Re: "Pythoner",Wish me luck!
On Apr 3, 8:58 pm, [email protected] wrote: > On Apr 3, 12:33 pm, barisa wrote: > > > > > On Apr 3, 11:39 am, "Hendrik van Rooyen" wrote: > > > > "Matteo" wrote: > > > > On Apr 3, 9:05 am, Linuxwell wrote: > > > > >> Starting today I would like to study Python,Wish me luck! > > > > >Good luck! > > > > >Don't forget to... > > > > >>>> print 'Hello World!' > > > > This is better advice than what you may think, > > > because the interactive interpreter is your very > > > best friend when studying the language. > > > > You get there by typing "python" at the command > > > line, and pressing enter. > > > > Using it, you will save yourself many hours of > > > misunderstanding. > > > > - Hendrik > > > Hi, > > I'm also begginer in python; > > i did few basic programs about graph etc.. > > > my question is : what benefit is using interactive intrepreter ? > > > i come from java backround, so I use eclipse for python as well. > > I start my program, it does it's job, and that's it. (after some > > debugging ofc) > > I'm also a beginner in Python, but from my own experience the > interactive interpreter is great for experimenting with new modules > and output formatting because it allows you to see the immediate > output of a function before you write it into your program. The > immediate result is that you'll see any errors and be able to fix them > before they end up in your script. > > Nick Ballardhttp://90daysofpython.blogspot.com thanks, i'll give it a try -- http://mail.python.org/mailman/listinfo/python-list
Re: python docs redirect on python.org is old
On Apr 5, 3:46 am, "Martin v. Löwis" wrote: > Brandon Craig Rhodes wrote: > > When I visit ... > > > http://www.python.org/doc/lib/lib.html > > > ... I get redirected to ... > > > http://www.python.org/doc/2.5.2/lib/lib.html > > > ... which seems a bit old. > > That is intentional. Use > > http://docs.python.org/library/ > > instead. > > Regards, > Martin why is it intentional? -- http://mail.python.org/mailman/listinfo/python-list
Re: Testing dynamic languages
On Apr 4, 9:57 pm, [email protected] wrote: > that. Don't fight the language. Use doctests). My other suggestion is > to read code coming from 5+ Python programs written by other > (different) people. You will see how to use Python. > > Bye, > bearophile Is there some online repository for such code? :) Regards Begginer -- http://mail.python.org/mailman/listinfo/python-list
