我有一个字符串,我知道它包含单词“ python”,但我不知道该字符串有多少个字符。 我要添加“。”在“ python”之前 例如:
str = input("enter string")
#Here I need help
print(str)#The output will be the user's input and "." before the word "python" let say str = "I love python" the output will be "I love .python"
答案 0 :(得分:1)
我没有完全收到您的问题,但是看看这个问题,也许会有所帮助。
inp=input('enter input ::') # taking user input
new_str=inp.replace('python','.python') #just replace python will .python in user input
print(new_str)
输出将类似于:
enter input ::i love python
i love .python