如何在python中将垂直字符串旋转为水平字符串? [关闭]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在python中将垂直字符串旋转为水平字符串? [关闭]相关的知识,希望对你有一定的参考价值。
我尝试使用那些脚本,但是它们不起作用。
print "".join(input.split())
和
input.replace("
", "")
(如果可以,请尝试解释您的答案)
答案
s1 = "abcd1234" # some horizontal string
s2 = "" # another string: we will use this to store verical form of s1
for i in s1:
s2 = s2 + i + '
'
您只需要在字符串中的每个字符之后输入换行符(
)。就这么简单!
以上是关于如何在python中将垂直字符串旋转为水平字符串? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章
在 ios6 和 ios7 的 MPMoviePlayerViewController 中将横向旋转为纵向