Write a function called remove_all_from_string that takes two strings, and returns a copy of the first string with all instances of the secnd string removed.
Test your function on the strings "hello" and "l". Print the result, whish chouls be:
heo
You must use:
• A function definition with parameters
• A while loop
• The find method
• Slicing and the + operator
• A return statement