I have the following, rather large conditional already nested 4 tabs in. I don't want to create placeholder variables to reduce readability, but I also want to comply with line length.
What is the pythonic way to group and break this conditional up to multiple lines?
In the format if (a and b) or (c and d)
if self.container.name == 'bill' and self.container.box.chest.props.by_idnum
or self.container.name == 'steve' and self.container.box.trunk.props.by_idnum: