Python如何使列表中的所有元素具有一定的长度
这个问题在这里已经有了答案:
>>> s = "ABCDEFGH135791011"
>>> print s[:7]
ABCDEFG
链接地址: http://www.djcxy.com/p/55121.html
上一篇: Python how to make all elements on a list be of a certain length