输入一个字符串,垂直输出中国加油
s = "中国加油"for i in range(len(s)):print(s[i])
s = input()print('\n'.join('中国加油'))我觉得我并没有领会楼主的意图