在python中的字符串中交换字母

在python中的字符串中交换字母,第1张

在python中的字符串中交换字母

您可以将其缩短

def rotate(strg,n):    return strg[n:] + strg[:n]

并简单地使用负索引来“向右”旋转

>>> rotate("hello", 2)'llohe'>>> rotate("hello", -1)'ohell'>>> rotate("hello", 1)'elloh'>>> rotate("hello", 4)'ohell'>>> rotate("hello", -3)'llohe'>>> rotate("hello", 6)  # same with -6: no change if n > len(strg)'hello'

如果即使在超过字符串长度后仍要保持旋转,请使用

def rotate(strg,n):    n = n % len(strg)    return strg[n:] + strg[:n]

所以你得到

>>> rotate("hello", 1)'elloh'>>> rotate("hello", 6)'elloh'


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5617596.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存