How To Create YAML file based on The Three Rules of YAML

What Is YAML?
YAML is a human-readable and human-friendly data representation language. Mainly used for configuration files and internet messaging. It is useful to manage data and includes Unicode printable characters. YAML uses the .yaml extension for its files.… Read More How To Create YAML file based on The Three Rules of YAML

Rate this:

How to Install Python 3.8 on Ubuntu 18.04 | 16.04

If you quickly want to get the latest version of Python installed on Ubuntu and get future updates automatically, then you can install it from the below third-party PPA repository… First install Ubuntu software properties package if it’s not already installed on your system.. After that run the commands to add the PPA.. The deadsnakes team maintains… Read More How to Install Python 3.8 on Ubuntu 18.04 | 16.04

Rate this:

Python Basics – Python built-in Data Types

The following sections describe the standard types that are built into the interpreter.Python has several standard types built into the interpreter: • Numerics: int, float, complex, and bool (the subclass of int with a True or False value)• Sequences: str, list, tuple, and range• Mappings: dict• Sets: set and frozenset• None: The null object [The… Read More Python Basics – Python built-in Data Types

Rate this: