Python is a programming language that has close relationship with C. Calling C functions from Python is straightforward via ctypes. (more…)
Read more »
Python’s pickle
module is a very convenient way to serialize and de-serialize objects. It needs
no schema, and can handle arbitrary Python objects. But it has problems. This
post briefly explains the problems. (more…)
Read more »
Connie Xu is currently studying Computer Science at Princeton University, where she has sharpened her skills in Algorithms and Data Structures as well as Linear Algebra. She is interested in learning more about Natural Language Processing and Machine Lea... (more…)
Read more »
Python is and will remain a dynamic language. Yet, 25 years into its existence now there was a language standard how to add type information into the language. Since then almost three years passed, in this blog post we'll explore where did the system evol... (more…)
Read more »