Gianluca TurcatelDec 25, 20215 min readPython - Basic & IntermediatePython DictionariesA Python dictionary is a data structure that stores items in the form of key-value pairs. The keys are unique and can only be string,...
Gianluca TurcatelDec 24, 20212 min readPython - Basic & IntermediatePython TuplesTuples store multiple items in a single variable. Tuples are immutable: values inside a tuple cannot be updated or changed. Initializing...
Gianluca TurcatelDec 21, 20217 min readPython - Basic & IntermediatePython Basic Data TypesPython basic data types include the integer, float, string and boolean. Integers Integers are positive and negative integer numbers that...
Gianluca TurcatelDec 11, 20213 min readPython - Basic & IntermediatePython Sets Sets are used to store multiple UNIQUE items in a single variable. Sets are unordered data structure. Initializing sets Place items...
Gianluca TurcatelDec 9, 20215 min readPython - Basic & IntermediatePython ListsLists are probably the most widely used data structure in Python. Lists store multiple items in a single variable. Moreover, lists are...