Skip to main content

All Questions

Tagged with
1vote
2answers
6kviews

Will compiled python code be as fast as compiled C++ code?

I know that Python is an interpreted language and that c++ is a compiled one, or at least I like to think that I've understood some of their differences. Although C++ is apparently faster than ...
Marstjugo's user avatar
22votes
1answer
3kviews

Why does the documentation on some languages say "equivalent to" rather than "is"?

Why does the documentation on some languages say "equivalent to" rather than "is"? For example, the Python Docs say itertools.chain(*iterables) ... Equivalent to: def chain(*...
Jon McClung's user avatar

close