I need to determine the most frequent character of a list of strings by each index in Python.
Example
list1 = ['one', 'two', 'twin', 'who']
the most frequent character between all the strings at index 0 is 't' the most frequent character between all the strings at index 1 is 'w' the most frequent character between all the strings at index 2 is 'o' the most frequent character between all the strings at index 3 is 'n'(because there is only one character at the index 3
from that I want to create a final string 'twon' which shows the most frequent character of all the strings by each index
how can I perform this on python without importing any library? thanks