char_list_2D = [
['P', 'y', 't', 'h', 'o', 'n'],
['p', 'r', 'o', 'g', 'r', 'a', 'm', 'm', 'i', 'n', 'g' ],
['l', 'a', 'n', 'g', 'u', 'a', 'g', 'e']
]
# Select row 1 (second row)
row_index = 1
selected_row = char_list_2D[row_index]
# Convert the row to a string
s = ''.join(selected_row)
print(s)
'''
run:
programming
'''