Example #1
0
from ex7 import remove_dollar_sign

string_with_no_dollars = remove_dollar_sign(
    "$80% percent of $life is to show $up")
if string_with_no_dollars == "80% percent of life is to show up":
    print("Your function is correct")
else:
    print("Oops, there's a bug")
Example #2
0
import ex7
string_with_no_dollars = ex7.remove_dollar_sign(
    "$80% precent of $life is showing $up")
if string_with_no_dollars == "80% precent of life is showing up":
    print("Your funtion is correct")
else:
    print("Oops, there's a bug")