Show the output of the following code:def f(m):for i in range(len(m)):for j in range(len(m[i])):m[i][j] += 1
def printM(m):for i in range(len(m)):for j in range(len(m[i])):print(m[i][j], end = "")print()m = [[0, 0], [0, 1]]printM(m)f(m)printM(m)
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here