提问人:Nithin Monu 提问时间:10/19/2022 最后编辑:Andrej KeselyNithin Monu 更新时间:10/19/2022 访问量:77
如何在每个字符前面添加字符串?
How to add string in front of every character?
问:
我试过了,但我不能。
我想在输入的每个字符前面添加字符串。"pp"
x=str(input("give me the characters"))
print("pp"+x[0]+"pp"+x[1]+"sa"+x[3])
答:
0赞
Andrej Kesely
10/19/2022
#1
您可以使用添加 .例如:str.join
pp
x = input("give me the characters: ")
print("pp".join(["", *x]))
指纹:
give me the characters: abcd
ppappbppcppd
评论