打乱功能不会输出
在 python 的 IDLE 中测试时,这个函数不会给我输出:
import random
def scramble(string):
rlist = []
while len(rlist) < len(string):
n = random.randint(0, len(string) - 1)
if rlist.count(string[n]) < string.count(string[n]):
rlist += string[n]
rstring = str(rlist)
return rstring
scramble('sdfa')
我花了很长时间试图找出问题,但代码对我来说似乎很好。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正确格式化这似乎可以解决问题。
在 Python 中,缩进与良好的语法一样重要:)
顺便说一句,正如 @Vincent Savard 所说,您没有打印结果。在 scramble() 中,您返回了一个字符串,但您没有对所述字符串执行任何操作。
Correctly formatting this seems to solve the problem.
In Python, indentation is just as important as good syntax :)
By the way, as @Vincent Savard said, you did not print the result. In your scramble() you returned a string, but you did not do anything with said string.
一些注意事项:
不要使用
string
作为参数名称,它可能与 标准模块字符串
。您可能不想返回列表的
str()
,这会导致类似的结果相反,要获取加扰的字符串结果,请使用
str.join()
:最后两行
scramble
可以是加入单个返回
:或
A couple of notes:
Do not use
string
as the argument name, it could clash with the standard modulestring
.You probably do not want to return an
str()
of the list, which results in something likeInstead, to get a scrambled string result, use
str.join()
:The last 2 lines of
scramble
can be joined in a singlereturn
:or