how can I go from this list in python:
string = "juice"
thislist = ["apple", "banana", "cherry"]
to this
thislist = ["apple juice", "banana juice", "cherry juice"]
Thanks
how can I go from this list in python:
string = "juice"
thislist = ["apple", "banana", "cherry"]
to this
thislist = ["apple juice", "banana juice", "cherry juice"]
Thanks