I know the python interpreter is written in C and produces bytecode to be run on the python virtual machine also written in C (right?).
I am talking about python of https://www.python.org/ interpreter. so the question is : what is python bytecode language ? C ? python ? ASM ? and what will execute this bytecodes in virtual machine ? is it a language ? and when it interpret this line , what are bytecodes likes ?
>>> print("HI")
HI
I also find this page : http://svn.python.org/view/