БГ
Size: a a a
БГ
NK
F
R3
NK
БГ
py3
import sys
class stdout():
def __lshift__(self, other):
sys.stdout.write(other)
stdout << "fuckyou"
Traceback (most recent call last):
File "source_file.py", line 7, in <module>
stdout << "fuckyou"
TypeError: unsupported operand type(s) for <<: 'type' and 'str'
БГ
R3
R3
БГ
БГ
БГ
R3
БГ
R3
ТК
БГ
py3
import sys
class stdout():
def __lshift__(self, other):
sys.stdout.write(other)
stdout = stdout()
stdout << "fuckyou"
fuckyou
БГ
R3
R3