
Python Essentials - Dictionaries
A dictionary is an unordered, mutable data structure that allows you to store pieces of information as key/value pairs. For example: psyker = { 'damage': 3, 'warp_charge_cost': 5.5, 'factions...

A dictionary is an unordered, mutable data structure that allows you to store pieces of information as key/value pairs. For example: psyker = { 'damage': 3, 'warp_charge_cost': 5.5, 'factions...

In object storage, files are stored as objects. Each object is treated as a single, unique unit of data when stored. Going back to the 1GB file example, if you change 1 character of this object fi...

Your application undeniably requires some form of storage to store and manage its data. For Instance, you need a place to store the operating system, system files and software for your app. You als...

A Virtual Private Cloud (VPC) is essentially your private network in AWS. When you create a VPC you get an isolated section of the AWS Cloud. Inside this isolated section is where you organize your...

A set is just an unordered, mutable data structure that allows you to store multiple unique pieces of information of different type: weapons = { "Boltgun", 24.0, True, "Lascannon", ...

A tuple is the immutable sibling of a list. Just as you would do with a list, you can store multiple pieces of information of different types in a tuple: weapons = ('Boltgun', 24.0, True, 'Lascann...

A list is a mutable, ordered data structure that allows you to store multiple pieces of information: # inline list style weapon_ranges = [ 24.0, 36.0, 12.0, 48.0, 18.0, 60.0, 6.0, 72.0, 30.0, 96.0...

The AWS Global Infrastructure consists of hardware and data centers distributed and interconnected all around the world to act as one large resource for the end customer. The AWS global infrastruc...

EC2 instances An EC2 Instance is a virtual machine that runs on top of an EC2 Physical Host: The Hypervisor is the piece of software that makes possible to run multiple virtual machines on the ...

What is Cloud Computing? It’s just simply the on-demand delivery of IT resources over the internet with a pay-as-you-go pricing. What is a Cloud Provider? It’s just a company that offers a wide ...