本文介绍了简单的代码工作,然后没有的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我这样做时:
plainText =dank memes
i = 0
railOne =
railTwo =
而i< len(plainText):
railOne + = plainText [i] +
i + = 1
railTwo + =+ plainText [i]
i + = 1
print(railOne)
print( railTwo)
它的工作原理
但是当我改变什么,除了移除潮湿和模因之间的空间是给我错误
我尝试了什么:
但是当我改变什么时除了删除潮湿之间的空间和memes它给我错误
when I do this:
plainText="dank memes"
i=0
railOne=""
railTwo=""
while i<len(plainText):
railOne+=plainText[i]+" "
i+=1
railTwo+=" "+plainText[i]
i+=1
print(railOne)
print(railTwo)
it works
but when I change nothing except remove the space between dank and memes is give me errors
What I have tried:
but when I change nothing except remove the space between dank and memes it gives me errors
推荐答案
这篇关于简单的代码工作,然后没有的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!