gpt4 book ai didi

python - 如何打印 python 列表,减去特定元素?

转载 作者:太空宇宙 更新时间:2023-11-04 10:06:36 24 4
gpt4 key购买 nike

给定:

commands = dict(
onboarding = dict(
default = "default",
status = "APPROVED",
date = "11/18/15"
)
team = dict(
members = getTeamMembers()
)

我该怎么做

print commands['onboarding'].keys() 

不打印列表中的“默认”键?我试图在我的实现中隐藏它。如果在两个版本的 python 中都有解释,则加分。

谢谢!

最佳答案

print [key for key in commands['onboarding'] if key != 'default']

关于python - 如何打印 python 列表,减去特定元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40686054/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com