The Remove All From String function is a function that takes two strings as its arguments, and remove all occurrence of the second string from the first
The function written in Python, where comments are used to explain each action is as follows:
#This defines the function
def RemoveAllFomString(str1, str2):
#This returns the new string after the second string have been removed
return str1.replace(str2, "")
Read more about python programs at:
https://brainly.com/question/26497128
#SPJ2