top of page
Search
Gianluca Turcatel
Jan 9, 20223 min read
Python Conditionals
Conditionals, as the name suggests, allow the conditional execution of a statement or series of statements based on the values of a...
160
Gianluca Turcatel
Dec 25, 20215 min read
Python Dictionaries
A 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,...
130
Gianluca Turcatel
Dec 24, 20212 min read
Python Tuples
Tuples store multiple items in a single variable. Tuples are immutable: values inside a tuple cannot be updated or changed. Initializing...
110
Gianluca Turcatel
Dec 21, 20217 min read
Python Basic Data Types
Python basic data types include the integer, float, string and boolean. Integers Integers are positive and negative integer numbers that...
660
Gianluca Turcatel
Dec 11, 20213 min read
Python Sets
Sets are used to store multiple UNIQUE items in a single variable. Sets are unordered data structure. Initializing sets Place items...
100
Gianluca Turcatel
Dec 9, 20215 min read
Python Lists
Lists are probably the most widely used data structure in Python. Lists store multiple items in a single variable. Moreover, lists are...
100
bottom of page