Month: October 2020

Python: JSON Basics

Learn from the basics about JSON data. We will create JSON data, add element, save it to a JSON file and view json on a Firefox browser. I’m currently using Windows 10 and writing the codes on Microsoft Studio Code app. Create a JSON data: import json data = {} data[‘name’] = ‘Aprilyn’ data[‘gender’] = …

Python: JSON Basics Read More »

How to install Python and Pip

Installing Python on Ubuntu First, update your system: sudo apt-get update Install python prerequisite sudo apt-get install build-essential libpq-dev libssl-dev openssl libffi-dev zlib1g-dev Installing Pip3 and Python3 sudo apt-get install python-pip python3-pip python3-dev -y Configuring Python 3 as default python –version pip –version If the version is not Python3 or Pip3, we have to set …

How to install Python and Pip Read More »