Looking to combine two list variables containing string elements. For example, if I have the below :
mystring1 = ['Luke', 'Han']
mystring2 = ['Skywalker', 'Solo']
I am looking to combine them to be :
mystring3 = ['LukeSkywalker', 'HanSolo']
I am sure I am missing something simple. Any guidance would be great!