Featured Post

Best Practices for Handling Duplicate Elements in Python Lists

Image
Here are three awesome ways that you can use to remove duplicates in a list. These are helpful in resolving your data analytics solutions.  01. Using a Set Convert the list into a set , which automatically removes duplicates due to its unique element nature, and then convert the set back to a list. Solution: original_list = [2, 4, 6, 2, 8, 6, 10] unique_list = list(set(original_list)) 02. Using a Loop Iterate through the original list and append elements to a new list only if they haven't been added before. Solution: original_list = [2, 4, 6, 2, 8, 6, 10] unique_list = [] for item in original_list:     if item not in unique_list:         unique_list.append(item) 03. Using List Comprehension Create a new list using a list comprehension that includes only the elements not already present in the new list. Solution: original_list = [2, 4, 6, 2, 8, 6, 10] unique_list = [] [unique_list.append(item) for item in original_list if item not in unique_list] All three methods will result in uni

How to Work with 'Pointers' in Python

Pointers denote an address (memory location). It has three identities - Name, Value, and Location (Address). Python doesn't support pointers as-is. You need to import 'ctypes' package to work with C Language.

Note: Pointer is popular in C, C++. The called module just uses the value of Pointer (not address).  Below is my detailed post on pointers.  


An article on how to work with pointers


How to work with Pointers

  • To pass a reference(address) to the C interface.
  • You can use C Language in Python by importing 'ctypes.' 

Pointer Notation

1. Value
2. Address
3. Name

Python Pointers


Python doesn't support pointers. C and C++ extensively support pointers. Pointer is nothing but an ADDRESS. It is immutable. That means you can't change the value. Python supports pointers for the purpose to interact with C Language.



Pointers

How to Import 'ctypes'

  1. Import 'ctypes' library for the purpose of working with C language. 
  2. Here's how to import 'ctypes' for windows and Linux.

How to denote Pointers

Here's the way to denote pointers in Python. Check out here Python Pointers.

 
from ctypes import * 
i = c_int(42) 
pi = pointer(i) 


Comments

Popular posts from this blog

Explained Ideal Structure of Python Class

6 Python file Methods Real Usage

How to Decode TLV Quickly