Chris Angelico <[email protected]>:
> In computing, assignment and reassignment aren't at all problematic,
> and neither is printing to the console, so please stop telling people
> off for using them.
Printing to the console is somewhat problematic:
>>> with open("/dev/console", "w") as console: console.write("hello\n")
...
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IOError: [Errno 13] Permission denied: '/dev/console'
Marko
--
https://mail.python.org/mailman/listinfo/python-list