刘凡 9ff4d1d109 add S3,archive,truncate | 2 年 前 | |
---|---|---|
.. | ||
.gitignore | 2 年 前 | |
LICENSE | 2 年 前 | |
MANIFEST | 2 年 前 | |
README.md | 2 年 前 | |
setup.py | 2 年 前 | |
test.py | 2 年 前 | |
truncate.py | 2 年 前 |
truncate string in python
##Code
import sys
def truncate(str, limit, ellipsis='...'):
return str[:limit] + ellipsis if len(str) > limit else str
sys.modules[__name__] = truncate
##Install
$ pip install trunkate
##Usage
import truncate
truncate('Hello world!', 4)
# Hell...
truncate('Hello world!', 100)
# Hello world!