I recently started studying deep learning and other ML techniques, and I started searching for frameworks that simplify the process of build a net and training it, then I fo
Python allows you to create extension modules using C and C++, interfacing with native code, and still getting the advantages that Python gives you.
TensorFlow uses Python, yes, but it also contains large amounts of C++.
This allows a simpler interface for experimentation with less human-thought overhead with Python, and add performance by programming the most important parts in C++.