I have a function like follows

def regex_from_filepat(fpat):
    rfpat = fpat.replace('.', '\\.') \
                      .replace('%', '.')  \
                      .replace('*', '.*')

    return '^' + rfpat + '$'


As I don't want to have the replace() functions in one line my
question is if it is ok to spread the statement over various lines as
shown above, or if there is a better way?

Thanks.

-- 
Manfred
 

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to