本文介绍了将字符串拆分为三个字符的组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




是否有一个函数将字符串拆分成组,包含一个x

个字符数量?


Ex。

TheFunction(Hello World,3)


返回:


[''Hell'',''o W'','orl'','d'']

任何回复都会非常感激。


谢谢,

Hi,

Is there a function that split a string into groups, containing an "x"
amount of characters?

Ex.
TheFunction("Hello World",3)

Returns:

[''Hell'',''o W'',''orl'',''d'']
Any reply would be truly appreciated.

Thank You,

推荐答案




也许,在那里的某个地方 - 你可以写一个你自己,像这样:


#未经测试

def nsplit(s,n):

返回[s [k:k] + n] for x in xrange(0,len(s),n)]



Maybe, somewhere out there -- you could write one yourself, like this:

# untested
def nsplit(s, n):
return [s[k:k+n] for k in xrange(0, len(s), n)]




这篇关于将字符串拆分为三个字符的组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 00:59