Why does this work?
with open(False) as f: s = f.read() I know this is an unimportant question but answers I've heard so far about OI open and waiting for an EOF token just doesn't seem to make sense as I've gotten this to work for True 1 and 0
Falsehas an integer value of0. My guess is thatopenis treating it as a file descriptor.