Search Results

16
votes
4answers
3k views

Calling a Function From a String With the Function’s Name in Python

What is the best way to go about calling a function given a string with the function's name in a python program. For example, let's say that I have a module foo, and I have a string whose contents …
8
votes
12answers
1k views

Memory Efficient Alternatives to Python Dictionaries

In one of my current side projects, I am scanning through some text looking at the frequency of word triplets. In my first go at it, I used the default dictionary three levels deep. In other word …
6
votes
4answers
671 views

How are Python’s Built In Dictionaries Implemented

The topic title pretty much says it all. Does anyone know how the built in dictionary type for python is implemented? My understanding is that it is some sort of hash table, but I haven't been ab …
3
votes

How to concatenate strings with binary values in python?

The chr() function will have the effect of translating a variable into a string with the binary value you are looking for. >>> sep = 0x1 >>> sepc = chr(sep) >&g …
0
votes

Python - Things one MUST avoid

This has been mentioned already, but I'd like to elaborate a bit on class attribute mutability. When you define a member attribute, then every time you instance that class it gets an attrib …