0
Python offers various advantages including simplified rules of coding and ease of readability. It offers OOP, cross platform compatibility and has numerous libraries that have been added over time. It can be understood why the original Bitcoin Core client was in C++ as python was not that popular as it is now.
Apart, from having to tear down the entire code, and re-write it in python and check for vulnerabilities, why aren't the core bitcoin developers thinking of migrating the entire reference client implementation language to python?
True, the question was self-answering, but what I was looking for was more to what capabilities are being offered by c++ to Bitcoin Core that is difficult to replicate with other modern programming languages. Losing core developers who are skilled in C++ but may not care to use Python, and opening can of worms for other recommendations are a valid point. – Ugam Kamat – 2019-03-25T11:09:47.353
1
C++ is a compiled language, so lives much "closer to the metal" than Python, which is an interpreted language. This means C++ can be more than 100x faster at doing the same job. As I'm sure you're aware, someone who can mine 100x faster has a significant advantage so even if Python had been the original language used, it would have changed to C++ (or a similar language) since.
– Alistair Mann – 2019-03-25T13:52:54.2904"Not trivial" ... it would be impossible. The state of the art in engineering can't provide a reasonable level of guarantee that a piece of code in C++ and a piece of code in Python behave the same way in all circumstances (which is what is required to not introduce a fork when making this change). – Pieter Wuille – 2019-03-25T18:47:41.030