#you can use replace function to remove specific word.>>> message = 'you can use replace function'>>> message.replace('function', '')>>>'you can use replace '
string = 'Hello WorldR'
# Lets say for instance you want toremove the R todisplay
# Hello World
print(string[:-1])
"""
The [:-<number of chars>] toremove from string starting from
righttoleft"""