栏目分类:
子分类:
返回
文库吧用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
文库吧 > IT > 面试经验 > 面试问答

将长字符串换成换行符的好方法吗?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

将长字符串换成换行符的好方法吗?

您可以使用

textwrap
模块:

>>> import textwrap>>> strs = "In my project, I have a bunch of strings that are read in from a file. Most of them, when printed in the command console, exceed 80 characters in length and wrap around, looking ugly.">>> print(textwrap.fill(strs, 20))In my project, Ihave a bunch ofstrings that areread in from a file.Most of them, whenprinted in thecommand console,exceed 80 charactersin length and wraparound, lookingugly.

帮助

textwrap.fill

>>> textwrap.fill?Definition: textwrap.fill(text, width=70, **kwargs)Docstring:Fill a single paragraph of text, returning a new string.Reformat the single paragraph in 'text' to fit in lines of no morethan 'width' columns, and return a new string containing the entirewrapped paragraph.  As with wrap(), tabs are expanded and otherwhitespace characters converted to space.  See TextWrapper class foravailable keyword args to customize wrapping behaviour.

使用

regex
,如果你不想合并一行到另一行:

import restrs = """In my project, I have a bunch of strings that are.Read in from a file.Most of them, when printed in the command console, exceed 80.Characters in length and wrap around, looking ugly."""print('n'.join(line.strip() for line in re.findall(r'.{1,40}(?:s+|$)', strs)))# Reading a single line at once:for x in strs.splitlines():    print 'n'.join(line.strip() for line in re.findall(r'.{1,40}(?:s+|$)', x))

输出:

In my project, I have a bunch of stringsthat are.Read in from a file.Most of them, when printed in thecommand console, exceed 80.Characters in length and wrap around,looking ugly.


转载请注明:文章转载自 www.wk8.com.cn
本文地址:https://www.wk8.com.cn/it/617791.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 wk8.com.cn

ICP备案号:晋ICP备2021003244-6号