如何在每个字符前面添加字符串?

How to add string in front of every character?

提问人:Nithin Monu 提问时间:10/19/2022 最后编辑:Andrej KeselyNithin Monu 更新时间:10/19/2022 访问量:77

问:

我试过了,但我不能。

我想在输入的每个字符前面添加字符串。"pp"

x=str(input("give me the characters"))
print("pp"+x[0]+"pp"+x[1]+"sa"+x[3])
python 字符串 索引 范围 超出

评论


答:

0赞 Andrej Kesely 10/19/2022 #1

您可以使用添加 .例如:str.joinpp

x = input("give me the characters: ")
print("pp".join(["", *x]))

指纹:

give me the characters: abcd
ppappbppcppd