Python文本常量和模板——string

來源:互聯網
上載者:User
#!/usr/bin/python#coding=utf-8#http://docs.python.org/library/string.htmlimport string#全部字母 abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZprint string.ascii_letters print string.letters #根據地區來的#全部小寫字母 abcdefghijklmnopqrstuvwxyzprint string.ascii_lowercaseprint string.lowercase#全部大寫字母 ABCDEFGHIJKLMNOPQRSTUVWXYZprint string.ascii_uppercaseprint string.uppercase#全部數字print string.digits#16進位? 0123456789abcdefABCDEFprint string.hexdigits#所有的空格 \t\n\x0b\x0c\r print string.whitespace#可列印字元(包括digits, letters, punctuation, and whitespace)print string.printable#標點符號print string.punctuation#不知道幹嘛的01234567print string.octdigits#字串格式化"{0} {1}".format("hello", "world")"{1} {0}".format("world", "hello")"{} {}".format("hello") #2.7 Only"{a} {b}".format(a= "hello",b ="world")#百分比,保留二位小數'Correct answers: {0:.2}'.format(1.00/3)'Correct answers: {0:.2%}'.format(1.00/3)import datetimed = datetime.datetime.now()'{0:%Y-%m-%d %H:%M:%S}'.format(d)#模板from string import Templates = Template('$a $b')s.substitute(a='hello', b='world')"hello".find("l") #2"hello".rfind("l") #3"hello".index("l") #2 如果沒找到會拋ValueError異常"hello".count("l") #2
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.