Python Forum
incremental testing in all()
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
incremental testing in all()
#2
According to the Python docs, all() does quit early.
Quote:all(iterable)¶
Return True if all elements of the iterable are true (or if the iterable is empty). Equivalent to:

def all(iterable):
    for element in iterable:
        if not element:
            return False
    return True
Reply


Messages In This Thread
incremental testing in all() - by Skaperen - Aug-15-2019, 11:47 PM
RE: incremental testing in all() - by boring_accountant - Aug-16-2019, 12:49 AM
RE: incremental testing in all() - by Skaperen - Aug-17-2019, 04:15 AM
RE: incremental testing in all() - by buran - Aug-17-2019, 06:01 AM
RE: incremental testing in all() - by Skaperen - Aug-18-2019, 07:10 PM
RE: incremental testing in all() - by perfringo - Aug-17-2019, 07:12 AM
RE: incremental testing in all() - by Gribouillis - Aug-17-2019, 07:36 AM
RE: incremental testing in all() - by buran - Aug-18-2019, 07:25 PM
RE: incremental testing in all() - by Skaperen - Aug-18-2019, 07:59 PM
RE: incremental testing in all() - by DeaD_EyE - Aug-18-2019, 11:36 PM
RE: incremental testing in all() - by Skaperen - Aug-19-2019, 06:18 AM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020