I've created the following code in R.
data=c("Sepal.Length","Sepal.Width","Petal.Length","Petal.Width")
terms<- paste(data, collapse='+')
and this gives;
"Sepal.Length+Sepal.Width+Petal.Length+Petal.Width"
Is there a way of doing something similar in Python / Pandas?