Hello,
I'm attempting to merge two lists using

, but I'm having trouble because the lists include various data types. Here's the scenario:
Code:
List 1: [1, 2, 3]
['a', 'b', 'c'] List 2
[1, 2, 3, 'a', 'b', 'c'] Merged List
Here's the code I wrote:
Code:
list1 = [1, 2, 3]
list2 = ['a', 'b', 'c']
merged_list = []
for item in list1:
merged_list.append(item)
for item in list2:
merged_list.append(item)
print(merged_list)
However, when I execute this code, I get a "TypeError: sequence item 3: expected str instance, int found" issue. I understand that I cannot combine data types in a list, but I'm not sure how to merge these lists with various data types appropriately. Could you please advise me on how to manage this situation?
Thank you so much for your aid!