bookmarks of the day 01/26/2010
Posted by Toshi | | Posted On Jan 26, 2010 at 11:30 PM
長い文字列連結
文字列を改行で区切って書くと連結される。s = "abc"\
"def"\
"ghi"
は、s = "abc" +
"def" +
"ghi"
と同じ。
6. Built-in Types — Python v2.6.4 documentation
- >>> print '%(language)s has %(#)03d quote types.' % \
... {'language': "Python", "#": 2}
Python has 002 quote types.- - post by tossy
Posted from Diigo. The rest of my favorite links are here.