top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is best way to learn Python for advanced developer?

0 votes
285 views

I am a Ruby developer and I want to program in Python. I know how to do simple things like create classes, methods, variables and all the basics. I want to know more. I want to know what is the Python philosophy, how to test, how to create maintenable software, etc.

I'm looking for online courses and any ressources I can have on the subject.

posted Jul 30, 2014 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button
Ever heard of search engines, they're very good. Can't really say much else when you don't provide any context in your message.

1 Answer

+1 vote

Udacity [1] has some free computer courses, a few of which use Python as the language -- what I have seen so far is decent.

O'Reilly [2] has four very good Python courses, which are not free.

[1] https://www.udacity.com
[2] http://www.oreillyschool.com/search/?search=Python

answer Jul 30, 2014 by Sanketi Garg
Similar Questions
+1 vote

I'd like to install ALL Python packages on my machine. Even if it takes up 4-5GB, or more, I'd like to get everything, and then use it when I need it. Now, I'd like to import packages, like numpy and pandas, but nothing will install. I figure, if I can just install everything, I can simply use it when I need it, and if I don't need it, then I just won't use it.

I know R offers this as an option. I figure Python must allow it too.

Any idea how to grab everything?

+3 votes

Is there way to get list of instances of particular class through class itself? via metaclass or any other method?

If class is object is it possible to delete it? If it is possible then how instances of that class will behave?

+2 votes

Also is there a way to detect if the user presses a key in Python that works on most OS's? I've only seen 1 method and that only works in Python 2.6 and less. If you get the key, can you store it in a variable?

...