Replace C language! Many Python developers are joining the Rust team
In the future, more and more libraries will use Python as the front end (improving programming efficiency) and Rust as the back end (improving performance). python Rust is replacing C as the “backend” for high-performance Python packages. What is the reason behind this? First, let’s consider motivation. Python is easy to write, but has the problem of slow execution speed. I especially can’t write data processing libraries because Python is very slow and it’s difficult to write high-performance libraries in pure Python. However, Python is the primary language for machine learning and data engineering. So when you try to write a library for data engineers or machine learning engineers, you run into the following problems: Although we need to write APIs in Python, high-performance data processing tasks cannot be done solely in Python. This means that you have the following options for writing a library: Either you learn and use C, or someone else learns C, writes a library, and you r...