May-07-2024, 05:52 AM
(This post was last modified: May-07-2024, 05:52 AM by Gribouillis.)
(May-07-2024, 05:40 AM)Skaperen Wrote: is there any case where a line of code that begins with a decimal number expressed as a run of digit characters can be valid Python code in Python3?These lines are valid python code if that's what you mean
232444 7663 + 12333 87633 >> xDoes your preprocessor remove these lines?
>>> class A: ... def __rrshift__(self, n): ... print('Hello', n) ... >>> a = A() >>> 1876 >> a Hello 1876
« We can solve any problem by introducing an extra level of indirection »