基本 Python While 循环复合条件评估

发布于 2024-09-04 12:11:27 字数 340 浏览 5 评论 0原文

在 Python IDLE Shell 中,我似乎无法使用复合条件表达式和 while 循环。我也在括号内尝试过。举这两个例子:

k=0
m=0
while k<10 & m<10:
    print k
    k +=1
    m+=1

这不会评估第二个条件。但如果我写

 while k<10:
    print k
    k+=1

这确实有效。有没有办法可以使用“and”运算符实现第一个代码块。我已经用Java做到了。我是否只需要组合“if”语句即可在 Python 中实现相同的功能?

In Python IDLE Shell it seems I cannot use a compound conditional expression and a while loop. I tried it within brackets too. Take these two examples:

k=0
m=0
while k<10 & m<10:
    print k
    k +=1
    m+=1

This doesn't evaluate the second condition. But if I write

 while k<10:
    print k
    k+=1

This does work. Is there a way I could achieve the first block of code with the "and" operator. I have done it in Java. Do I just need to put together "if" statements to achieve the same functionality in Python?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青衫负雪 2024-09-11 12:11:27

& 应该是 and& 是按位 AND 运算符。

& should be and. & is the bitwise AND operator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文