gpt4 book ai didi

python - Python 是否提供类似 Perl 的 "unless"的东西?

转载 作者:太空狗 更新时间:2023-10-29 16:53:09 24 4
gpt4 key购买 nike

我有一些代码:

if '@' in line and line == l:
lineMatch = True
line = line.strip('\n')
line = line.split('@')[1]
line = line + '<br>\n'
labels.append(line)

如果标签中有 p4port,我不想在标签上附加一行。在 Python 中是否有类似 unless 的东西,它允许我编写类似 labels.append(line) unless 'p4port' in line 的东西?

最佳答案

“不在”呢?:

if 'p4port' not in line:
labels.append(line)

另外我猜你的代码可以修改为:

if '@' in line and line == l and 'p4port' not in line:
lineMatch = True
labels.append(line.strip('\n').split('@')[1] + '<br>\n')

关于python - Python 是否提供类似 Perl 的 "unless"的东西?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13340856/

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