码迷,mamicode.com
首页 > Windows程序 > 详细

那些记不住的api

时间:2016-03-30 08:15:59      阅读:467      评论:0      收藏:0      [点我收藏+]

标签:

当然可以现查,但难免落入造轮子的悲剧;kengchi kengchi在那搞了半天,

后来发现内置的就有...

1.字符串

>>> a.zfill(3)
00a
>>> abdef.partition(b)
(a, b, def)
>>> abdef.rpartition(b)
(a, b, def)
>>> a.center(10,*)
****a*****
>>> tmp="""abc def
def
defef fff         s"""
>>> tmp.splitlines()   #读文件后干过很多次 splinline(‘\r\n‘)
[abc def, def, defef fff \t\ts]
>>> sd\td.expandtabs()
sd      d

 

那些记不住的api

标签:

原文地址:http://www.cnblogs.com/Citizen/p/5335640.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!