I have a string and I know it includes the word "python" but I don't know how many characters the string has. I want to add "." before "python" for example:
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"