I have developed some projects with Ruby on Rails.Now I want to quickly learn Python.Is there any good way?
I want to know some good sites,good samples,good practices.
Such as how Python connect MongoDB,etc.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The best resource on python is docs.python.org, it has the CPython reference, other than that it’s mostly learning the syntax, which is gonna be a little different than ruby, but is pretty simple to master. Any of the online tutorials should give you syntactic examples. If you have specific questions, ask those here. One tip, if you launch python with no arguments, you’ll get the repl, which will let you explore modules and objects interactively. From there, help, vars, and dir are the three most useful functions for seeing how things work.