Pointer in python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Pointer in python

is there is an alternate to pointer , in Python?

20th Jul 2017, 4:46 AM
kate Wilson
kate Wilson - avatar
1 Answer
+ 5
Python does not support pointers, at least not in their classic form. You won't assign variable names to memory locations. Instead, in Python you are creating a reference to a value in this memory location.
20th Jul 2017, 5:57 AM
Kuba Siekierzyński
Kuba Siekierzyński - avatar