truncate_2_1.py 105 B

12
  1. def truncate(str, limit, ellipsis='...'):
  2. return str[:limit] + ellipsis if len(str) > limit else str