Horje
higlight words in python Code Example
higlight words in python
from functools import reduce
from itertools import chain

text = 'left foot right foot left foot right. Feet in the day, feet at night.'
l1 = ['foot','feet']

print(reduce(lambda t, x: t.replace(*x), chain([text.lower()], ((t, colored(t,'white','on_red')) for t in l1)))) 




Python

Related
element wise subtraction python list Code Example element wise subtraction python list Code Example
funcions in python Code Example funcions in python Code Example
how to read numbers in csv files python Code Example how to read numbers in csv files python Code Example
regex to end with python Code Example regex to end with python Code Example
pandas datetime to unix timestamp Code Example pandas datetime to unix timestamp Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8