2 Answers
+ 2
Python is build with the help of c/c++. You can use some i/o drivers in python which are c/c++ compiled files, but you can not access hardware like c. It is really close to hardware as you can access pointers and manipulate memory as you desire. But such facility is not provided by python.
I would recommend to use c/c++ if you want to create fast and efficient code which access hardware...
+ 2
Thanks