I have an list of strings which illustrate propositions. E.g.
L = ['(A∧B)', 'A', 'B']
My aim is to join each element with the string '∧' and brackets "()", which results in following string:
aim = "(((A ∧ B) ∧ A) ∧ B)"
is their a simple method to do that?