Differences between a thread and a process

In this article, we will try to clarify the differences between an operating system process and a thread. But before jumping into the main disparities, we will first define what is the role of each of these operating systems’ important entities. (more…)

Continue Reading Differences between a thread and a process

How To Create A Dictionary In Python

In Python, a dictionary is an apparently random set of data values that may be used to store data values in the manner of a map. Unlike other data types, which can only store a single value as an element, dictionaries retain Key:value pairs instead of (more…)

Continue Reading How To Create A Dictionary In Python