gpt4 book ai didi

python - Pascal 函数在 Python 中插入/删除

转载 作者:太空宇宙 更新时间:2023-11-04 09:08:43 24 4
gpt4 key购买 nike

Delphi 有函数

  • Insert(将子字符串 Str2 插入字符串 Str 的偏移量 P)和
  • Delete(从字符串 Str 的偏移量 P 处删除 N 个字符)。

它们在 Python 中对字符串的模拟是什么?

最佳答案

你可以使用

  • s1[:p] + s2 + s1[p:]
  • s1[:p] + s1[p+n:]

例如:

>>> s1 = 'hello world'
>>> s2 = 'xyz'
>>> p = 3
>>> s1[:p] + s2 + s1[p:]
'helxyzlo world'
>>> n = 2
>>> s1[:p] + s1[p+n:]
'hel world'

关于python - Pascal 函数在 Python 中插入/删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17643234/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com