LoginSignup
6
2

More than 3 years have passed since last update.

PythonのコンソールをUNKOまみれにする

Last updated at Posted at 2019-11-06

「文科省のPythonはPythonじゃねぇ」で知ったのですが、Pythonは組み込み関数も上書きできるんですね。
で、調べてみると、builtins.()で元の組み込み関数も呼び出せると。
ということは、プログラムの先頭あたりにでも

import builtins
def print(str):
    builtins.print('UNKO')

といれておけば、何をprint()しても
2019-11-07_010140.png
こうなります。

6
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
2