如题,input一个未知row和column的数组,如何进行遍历数组内每一个元素?for循环貌似不可行了是吗?或者有没有什么办法,获得某个数组的行数和列数?
for循环仍然可以
for i in range(row): for j in range(column):