Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am interested in hearing the differences between Go and Python and reading an overview of the similarities. I know that Google has heavy usage of Python and Go looks to be a bit related.

share|improve this question
1  
You may find this article to be interesting: elfsternberg.com/2009/11/16/… – James Black Jul 26 '10 at 18:48
@James Black: Thanks, that was an interesting article. Brutal but interesting. My summary: the things the Go team were proud of are roughly 2x faster in Stackless python. – TheJacobTaylor Jul 26 '10 at 22:27
Those articles are interesting, brutal, but hardly truthful. There's not an ouch of engineering in comparing apples and oranges like that. – Will Jul 27 '10 at 8:13
I might be mistaken. They are different languages with different purposes. From a performance perspective, specifically the speed of compiling and execution for a simple script, I thought the article would be accurate. Other goals of Go are completely left out: Static type checking, syntax, ... To be more fair, they should have had time to provide static type checking. Fraction of a second for Go, NA for Stackless Python. They might have also included a time to read and understand for a human or time to write or ... – TheJacobTaylor Jul 27 '10 at 20:03
I am curious about the performance of large or medium sized programs. Specifically the compile time of C++ Vs Go programs and execution performance. The size of example that you can fit on a single powerpoint slide is not very indicative. – TheJacobTaylor Jul 27 '10 at 20:06
show 1 more comment

closed as not constructive by ChrisF, casperOne Oct 5 '12 at 14:58

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 20 down vote accepted

Rob Pike, one of the founders of Go, talks about Go and mentions Python for comparison in this keynote "Public Static Void"

That Google employ both the creator of Python and the creators of Go - going further, they sponsored the Go project from the beginning, whereas they brought in Guido only when Python was established - does not mean that they are necessarily very related. Google is a big company with a big codebase and plenty of room for both 'system' and 'scripting' languages and everything in-between.

You'll see from that keynote, the Goists like Python but they developed Go to fix things they thought were wrong with the dynamic types direction...

share|improve this answer
Thanks @Will. I thought it was an interesting presentation. I looked at a few Go code samples on the Go language website and thought it was more related to Python than it now appears to be. It looks like it could be a lot of fun. – TheJacobTaylor Jul 26 '10 at 22:48
+1 vote for providing the nice video link – jdi Jul 29 '11 at 0:13
gist.github.com/3096498 - not only two creator. They got AWK and many other creator involved. The only problem is Go syntax is not following C syntax, which will always make many programmers including me not following Go what-ever they are building for the future, because of syntax so different then C. – YumYumYum Jul 12 '12 at 10:29
If you've used python, pascal and c/c++ go feels quite natural after going through the gotour. – Isaac Remuant Dec 26 '12 at 15:06

The Go Language Design FAQ will help answer your question to the goals of the Go language.

As for it's similarities to Python, the more I use Go the less similar it seems to Python. It really is a descendant of C and Limbo more than anything. If you notice in that FAQ it does not mention Python as an ancestor to Go. They have very different goals, methods, and ideas.

share|improve this answer
Thank You @cthom06. The similarities I was initially seeing where related to the code samples on their website. The overview from "Public Static Void" helped explain some of those. – TheJacobTaylor Jul 26 '10 at 22:49

Not the answer you're looking for? Browse other questions tagged or ask your own question.