You are viewing a single comment's thread. Return to all comments →
#!/bin/python3 import math import os import random import re import sys first_multiple_input = input().rstrip().split() n = int(first_multiple_input[0]) m = int(first_multiple_input[1]) matrix = [] smat = '' for _ in range(n): matrix_item = input() matrix.append(matrix_item) for i in range(m): for j in range(n): smat += matrix[j][i] print(re.sub(r'\b(\W)+\b', ' ', smat))
Seems like cookies are disabled on this browser, please enable them to open this website
Matrix Script
You are viewing a single comment's thread. Return to all comments →