兩個 Python 的冷技巧

來源:互聯網
上載者:User

記得剛開始工作的時候,老大給我們上 C++ 基礎課,告訴我們字串字面量可以換行(如下代碼),感覺真是如夢如幻。

#include <stdio.h>int main(int argc, char** argv){        char* w = "hello"                " "                "world."                ;        printf("%s", w);        return 0;}

輸出:

hello world.

後來在寫了很久的 Python 以後,才知道 Python 其實也可以的:

>>> t = ('hello'... ' '... 'world')>>> t'hello world'

這個特性很有用,能夠把超長的代碼優雅地分為幾行。記得以前在拼 SQL 語言、寫日誌條目的時候總為程式碼長度超過 78 感到糾結(見我們的編程規範:http://blog.csdn.net/lanphaday/article/details/6601123),現在沒有壓力啦。

在寫 absolute32(見:http://blog.csdn.net/lanphaday/article/details/6762023)的測試代碼的時候,為了讓測試代碼相容 Python2.x/3.x 兩大版本,引入了一砣醜陋的代碼:

if sys.version < '3':        exec("chinese = unicode('賴勇浩', 'utf-8')")else:        exec("chinese = '賴勇浩'")

這是因為在 Python2.x 中

chinese = '賴勇浩'

的編碼不是 unicode 的,而在 Python3.x 中取消了字串字面量的首碼 u,所以

chinese = u'賴勇浩'

又直接語法錯誤,當時只好寫下了 exec 的代碼根據不同的版本來進行編譯。後來才知道 Python2.6 中引入了 unicode_literals,可以很方便地寫 2.x/3.x 相容的代碼:

>>> x = '中國'>>> x'\xe4\xb8\xad\xe5\x9b\xbd'>>> from __future__ import unicode_literals>>> y = '中國' >>> yu'\u4e2d\u56fd'

這樣,我那砣醜代碼也可以美化掉啦!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.