Earlier quoted context omitted.
Not dumb. I only discovered Linkedin Python groups yesterday. I didn't mean to come off as condescending.
It's cool... that wasn't condescending. I actually never thought of my linkedin connections/groups as potential co-workers...
Python for Beginners
51–60 of 62 posts
Re: Python for Beginners
#52I think Python is one of the easiest languages to pick up with a plethora of content available to start. Yet I have seen some crunch in number python programmers in the market lately. Companies struggling to hire python guys. Not sure why?
I started a job as a web designer in Dec 2011 only knowning HTML/CSS. I picked up a little PHP and JS knowledge.. not much, but working with WordPress it kind of just happens. I tried Learn Python the Hard Way, but when I finished the book I didn't feel like I had the skills to start a project, so I read the Django Book. I am more of a designer than a developer, I really want to get over the hump and start writing co…
If you're talking of django/web-frameworks, well it'll be a little more effort since it involves some stuff (concepts of MVC, etc) other than python per se. So you could start by understanding of web development in general. But django docs tutorials are also pretty good.
Re: Python for Beginners
#53I think Python is one of the easiest languages to pick up with a plethora of content available to start. Yet I have seen some crunch in number python programmers in the market lately. Companies struggling to hire python guys. Not sure why?
I've also found Python incredibly easy to pick up, but that may be because it's my nth language and not my 1st, 2nd, etc
Re: Python for Beginners
#54Hello everyone, I'm the admin of pythonforbeginners.com . What a day! Being on the first page of Hacker News was really unexpected and I was pleasantly surprised. Thank you for all the comments I have received. I have a lot of work to do, which is super exciting and I'll do my best to fix the formatting issues and to get the website more structured so that new users easier can find out where to start. If you have any…
It would be nice to have a very basic starter's tutorial involving stuff like 'how to install and setup python, how to work with python shell' absolute beginners might find it useful...
Re: Python for Beginners
#55Earlier quoted context omitted.
How are you seeking help when you get stuck? It's really important to have someone that can help you go over the big hurdles. It doesn't have to be a specific person in particular. You can go on irc.freenode.org #python and ask questions there. People are helpful most of the time.
Thanks. I've just been checking StackOverflow, and I hang out on IRC from time to time.. I had a programming mentor who I met via Reddit, but he went MIA on helping me out after a few months payment. :[
This makes me think that a program that connects mentors and students would be very useful. I'm not necessarily thinking of it as a money-making endeavour, but some resources need to be found to make the project self-sustainable.
Re: Python for Beginners
#56This is a nice layout but I'm afraid the blog structure is less than optimal. For a beginner, the priority of lessons is not their chronology of publishing, but of their logical place in the learning process. Also, the taxonomy needs work...I don't think this is what I have in mind when I see the "basics" category of a beginners reference to Python: http://www.pythonforbeginners.com/category/basics/ Basics for beginn…
Re: Python for Beginners
#57I just recently fell in love with Python while writing a Sublime Text plugin but I'm still very much a beginner and I'm not sure if the format of this blog is great for beginners. 1. The formatting of the posts need some work. The text is often intimidating because its in big chunks and where there are code blocks there isn't any clear way to distiguish them from body copy. The way http://codular.com/ does it is real…
Re: Python for Beginners
#58All inline comments should come with a space after the #. All dictionary literals should have no spaces immediately within { and }. All multi-line dictionaries should be aligned one character after the opening parenthesis. There exists a line with "for key, value in dict.items.():", which is invalid. Use of one-liner "for" statements is discouraged. "if not a in b" is a more easily translatable statement than "if a n…
Re: Python for Beginners
#59Please please please use a mono-space font for code!
Re: Python for Beginners
#60As someone who is learning python as their first programming language this was very helpful.