Join us and get access to thousands of tutorials and a community of expert Pythonistas.
This lesson is for members only.Join us and get access to thousands of tutorials and a community of expert Pythonistas.
Pointers and Objects in Python (Summary)
You now know how Python deals with objects andpointers! You learned about the differences between names and variables, which is important for understanding how Python handles variables. You also saw that you can simulate pointers in Python without sacrificing the memory safety that Python provides.
You can simulate pointers in Python by:
- Usingmutable objects as low-overhead pointers
- Creating customPython objects for ease of use
- Unlocking real pointers with the
ctypesmodule
00:00We covered a lot in this course.You learned how pointers work in C, the difference betweenmutable andimmutable objectsin Python, how you can utilize mutable objects and classes to mimic pointerbehavior, and how Python code can interface with C using thectypes module.
00:21As you’ve learned, pointers don’t exactly exist in Python,but you can simulate the pass-by-reference behavior of pointers in Python, allwithout sacrificing the memory safety that Python provides. Using what you’velearned in this course,you can write Python libraries that are easier to work with,and you can also encapsulate performance-critical parts of your Python code intoC and pass pointers that way.
00:50I’m Austin Cepalia with realpython.com.Thanks for watching this course and, as usual, happy coding!
DFreyer onJuly 8, 2020
Very good Presentation. I learned a lot.
Santosh onJuly 8, 2020
Great job! Loved the flow and presentation.
felixthec onJuly 8, 2020
:Applause: A very good and informative presentation.
Jordan Rowland onJuly 11, 2020
This was an awesome lesson! Very clear and concise. Bravo!
Hilman onJuly 11, 2020
Good presentation. A good refresh for me on C pointer. And this is my first time learning working with C type in python!
mahlenius onJuly 12, 2020
Great presentation. Very helpful. Its great that he calls out where Python is strong for some problems and weak for others.
thank you
Alex onJuly 15, 2020
awesome presentation!
anders stenborg martin onJuly 15, 2020
Great course, well presented!
carl onJuly 15, 2020
Nice presentation. Would love to see a more advanced course on using the ctypes module to call C functions for all sorts of argument types and return types.
srihariraju onAug. 12, 2020
Good presentation
Ghani onOct. 18, 2020
Very informative and clear; thank you so much!
g2sgautam onDec. 20, 2020
I am getting an error
“TypeError: ‘CDLL’ object is not callable” on my Windows machine when I execute the code in 2nd last vide tutorial
Any solutions ?
Mark onSept. 11, 2021
Great course, Austin. I’ve watched it three times to drill it in, and just wanted to drop a comment saying you’re a good teacher. All writers here on Real Python strike me as good, but I found you stood out. I’ll be looking for content from you in the future. I just felt compelled to pat you on the back for this course. Good job!
Joachim Spange onDec. 12, 2022
Great course.After postingAdd a pointer to image data in memory to acquisition queue, not the retrieved image data at stack overflow and not getting any answers within the coming days I watched this series. It was really insightfull and I now understand the complexity of the question I’m asking and why I’ll maybe never get a conclusive answer. I must roll up my sleeves and fix this with a C-function and CPython
Andras onFeb. 27, 2025
Great course, thank you!
Become a Member to join the conversation.
Course Contents

