word = [
    "ABCDE", 
    "abcde", 
    "01234", 
    "FGHIJ", 
    "fghij" 
]
answer = []

for j in range(len(word)):
    for i in range(len(word)):
        answer.append(word[i][j])

print(''.join(answer))

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: