Standardize Mobile Number Using Decorators

  • + 0 comments
    
    
    def fun(l):
        formatted_numbers = ["+91 " + num[-10:-5] + " " + num[-5:] for num in l]
        f(formatted_numbers)
    return fun