I'm biased in favor of Python -- strong implementations on every platform, performance quite respectable (and increasing thanks e.g. to efforts such as Unladen Swallow, uncluttered code (no stropping, no block markers), extremely fast to learn, highly scalable (esp. when properly deployed on App Engine) -- I have no idea what you mean by asking about "adoption of domain services". In my case the causality goes the other way, i.e., Google hired me (and I was very interested in joining) because they were already heavily using Python and I was a well known expert (author of the book used as the standard Python reference at Google, etc).
So let me be balanced by mentioning pluses for "the other guys": PHP is the most widely used server-side language on the Web -- it's hard to get precise numbers but estimates are that more than 50% of sites use PHP. Ruby has long had a lot of "buzz" in its favor, especially thanks to Rails, and many of its design decisions, even where they differ from python's, are arguably elegant in their own ways (stropping instead of self and global, blocks instead of iterators and generators, re-openable classes, implicitly separated namespaces for attributes and methods instead of a single namespace, etc).
You have not even mentioned Perl -- "out of fashion" in the buzz sense but still very much out there, and used in the real world; it's a very large, complicated and rich language, takes longer than any of the others to learn thoroughly, but should at least be mentioned and considered.
And the language nobody respects properly -- and the one whose title to "the language of the web" is undisputable in its own way -- is Javascript. Its server-side implementations are probably not really competitive with any of the other languages we mentioned, but if you can deploy most of your code in users' browsers you'll start to find really strong implementations using highly advanced technologies -- Chrome, Safari, Opera, Firefox, are all getting very strong and compatible in this regard (IE lags, but Google Chrome Frame for it would compensate;-). The language itself has some very regrettable design choices from its early days which can never be really fixed (how do you upgrade >1 billion browsers?-), but sticking to a subset, and with frameworks such as dojo or jquery, it's usable. And it unlocks for your programming platforms such as Palm Pre and the future Google Chrome OS, where you don't really get many options...
That being said, it's still true that JS is less efficiently deployable server-side, as of today, than the alternatives, so a twin-language strategy (server-side / client-side) remains advisable. But if you're keen to learn only ONE language, do consider JS!-)