这就是我目前拥有的:
messages = {
"Placeholder": 0,
"1": 48,
"2": 4,
"3": 31,
"4": 2
}
def pls():
messages_sorted = sorted(messages, key=messages.get, reverse=True)
for i in range(10):
output = []
try:
currp = str(messages_sorted[i])
if currp == "Placeholder":
print("PLACEHOLDER DETECTED")
return output
currpp = messages[currp]
output.append(f"{currp} has {currpp} and is Place {i+1}")
print(output)
except IndexError:
print("Index error")
except:
print("some other error")
return output
output = pls()
output = str(output)
output = output.replace("['", "")
output = output.replace("']", "")
print(output)
我已经使用这个问题的答案将不同的输出制作为一个列表,但是当我运行它时,它返回一个空列表。当我删除以下部分时:
if currp == "Placeholder":
print("PLACEHOLDER DETECTED")
return output
我刚刚收到一堆索引错误。这
print(output)
在 for 循环内部,我得到了控制台中所需的内容(作为不同的字符串),但是我无法将其作为 List 或变量返回。我怎样才能做到这一点?
白板的微信
慕桂英3389331
相关分类