请编写函数fun,函数的功能是:将M行N列的二维数组中的字符数据, 按列的顺序依次放到一个字符串中
时间: 2023-11-18 07:05:32 浏览: 71
C语言程序设计-编写函数fun其功能是:根据整型形参m,计算如下公式的值:y=1+13+15+17+…+1(2m+1)
5星 · 资源好评率100%
```python
def fun(arr):
m = len(arr)
n = len(arr[0])
res = ''
for j in range(n):
for i in range(m):
res += arr[i][j]
return res
```
测试:
```python
arr = [['a', 'b', 'c'], ['d', 'e', 'f'], ['g', 'h', 'i']]
print(fun(arr)) # 'adgbehcfi'
```
阅读全文