Is there a framework for python that supports pointers and memory management? | Sololearn: Learn to code for FREE!
0

Is there a framework for python that supports pointers and memory management?

Is there a framework for python that supports pointers and memory management?

12th Sep 2018, 11:14 PM
Stanislav Vladev
Stanislav Vladev - avatar
2 Réponses
+ 3
Stanislav Vladev Why not use C/C++?
13th Sep 2018, 1:45 AM
Manual
Manual - avatar
+ 1
No, python is a virtual machine and python program doesn't have direct access to hardware resources. It makes python a cross platform tool when we have to port only machine to a new platform, but all programs work out of the box. You can write your own native module for python on C or C++ that will perform required operations for you, but it is your responsibility to compile and install it for all required platforms.
13th Sep 2018, 3:43 AM
Sergey Ushakov
Sergey Ushakov - avatar