Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
You WILL use pointers if you ever choose to write a module.
Pointers are not really that hard. Its an address. That is all. -
Every python variable that's not plain old data is a reference, so internally it's a pointer with some GC and runtime metadata. What it doesn't have is explicit raw pointers.
-
Pointers are just variables with addresses as their value.
You can use "pointers" with CPython. You can use the id() method with modules like ctypes.string_at(). But if you ever actually do it your coworkers will kill you. -
I don't understand why people dislike "pointers". You can dislike manual memory management, or the notion of references (although that's pretty hard to avoid) or some other aspect, but pointers are present in every mainstream programming language, just under a different name and more automated.
Unless you hate the word for some reason. -
eideon393yI know its not like python doesn't have pointers but the fact that you don't have to worry about that makes me feel good
-
eideon393y@homo-lorens I don't dislike them its just so confusing to me
I would just try by adding or removing the *
Related Rants
The thing I love about Python is that it has no fricking pointers!!!
I hate pointers and getting a language that doesn't use them
win-win for me!
rant
python
coding
coder
india
javascript
java
c++
newrant