Python has brought computer programming to a vast new audience
1–10 of 268 posts
Re: Python has brought computer programming to a vast new audience
#2Re: Python has brought computer programming to a vast new audience
#3Re: Python has brought computer programming to a vast new audience
#4A huge, huge "thank you" to Mr. van Rossum for creating this quirky language that I've become so fond of and for the countless hours of his life he's given to the project.
Re: Python has brought computer programming to a vast new audience
#5Python is certainly way better for a layman trying to do small things than C++
Maybe for a complete beginner these are no-issues.
Re: Python has brought computer programming to a vast new audience
#6Python is certainly way better for a layman trying to do small things than C++
True, but for me that python was my 4th CL (after fortran, c, c++), there were lots of gotchas, specially with implicit type conversions, mutable classes, and passing by value / reference which all seemed quite arbitrary in my first steps. Maybe for a complete beginner these are no-issues.
Re: Python has brought computer programming to a vast new audience
#7Re: Python has brought computer programming to a vast new audience
#8I remember hating the whitespace thing so much when I started with Python circa 2.4, but have really come to love the language in a lot of domains since then. A huge, huge "thank you" to Mr. van Rossum for creating this quirky language that I've become so fond of and for the countless hours of his life he's given to the project.
I hated the white-space thing until I discovered that. For whatever reason this made me get over myself and learn to love the tab/space argument that is somewhat akin to the vi/emacs argument.
Re: Python has brought computer programming to a vast new audience
#9The great advantage of Python is the vast amount of libraries out there for pretty much anything you can think of. As a C# developer that's the one thing, and probably the only, that I envy from Python.
Re: Python has brought computer programming to a vast new audience
#10I remember hating the whitespace thing so much when I started with Python circa 2.4, but have really come to love the language in a lot of domains since then. A huge, huge "thank you" to Mr. van Rossum for creating this quirky language that I've become so fond of and for the countless hours of his life he's given to the project.
from __future__ import braces I hated the white-space thing until I discovered that. For whatever reason this made me get over myself and learn to love the tab/space argument that is somewhat akin to the vi/emacs argument.