What will be the output of the following Python code?
data = [[[1, 2], [3, 4]], [[5, 6], [7, 8]]]def ttt(m): v = m[0][0] for row in m: for element in row: if v < element: v = element return vprint(ttt(data[0]))
निम्नलिखित Python कोड का आउटपुट क्या होगा?
A. 1
B. 2
C. 4
D. 5