Development
How To Install the Anaconda Python Distribution on Ubuntu 16.04
Tutorials
Data Analysis
Development
Python
Ubuntu 16.04
Introduction> Introduction # Anaconda is an open-source package manager, environment manager, and distribution of the Python and R programming languages. It is commonly used for large-scale data processing, scientific computing, and predictive analytics, serving data scientists, developers, business analysts, and those working in DevOps.
How To Install Django and Set Up a Development Environment on Ubuntu 16.04
Tutorials
Debian
Development
Django
Programming Project
Python
Ubuntu 16.04
Introduction> Introduction # Django is a free and open-source web framework written in Python that adheres to the model template view (MTV) software architectural pattern. The MTV pattern is Django’s take on the model–view–controller (MVC) pattern.
Understanding Dictionaries in Python 3
Tutorials
Development
Python
Introduction> Introduction # The dictionary is Python’s built-in mapping type. Dictionaries map keys to values and these key-value pairs provide a useful way to store data in Python.
Typically used to hold data that are related, such as the information contained in an ID or a user profile, dictionaries are constructed with curly braces on either side { }.
How To Build a Machine Learning Classifier in Python with Scikit-learn
Tutorials
Data Analysis
Development
Machine Learning
Programming Project
Python
Introduction> Introduction # Machine learning is a research field in computer science, artificial intelligence, and statistics. The focus of machine learning is to train algorithms to learn patterns and make predictions from data.
How To Set Up Jupyter Notebook with Python 3 on Ubuntu 18.04
Tutorials
Data Analysis
Development
Python
Ubuntu 18.04
Introduction> Introduction # Jupyter Notebook is an open-source web application that lets you create and share interactive code, visualizations, and more. This tool can be used with several programming languages, including Python, Julia, R, Haskell, and Ruby.
How To Set Up Jupyter Notebook for Python 3 on Ubuntu 22.04
Tutorials
Data Analysis
Development
Python
Introduction> Introduction # Jupyter Notebook offers a command shell for interactive computing as a web application. The tool can be used with several languages, including Python, Julia, R, Haskell, and Ruby.
How To Use String Formatters in Python 3
Tutorials
Development
Python
###Introduction
Python’s str.format() method of the string class allows you to do variable substitutions and value formatting. This lets you concatenate elements together within a string through positional formatting.
This tutorial will guide you through some of the common uses of formatters in Python, which can help make your code and program more readable and user friendly.
How To Index, Split, and Manipulate Strings in JavaScript
Tutorials
Development
JavaScript
Introduction> Introduction # A string is a sequence of one or more characters that may consist of letters, numbers, or symbols. Each character in a JavaScript string can be accessed by an index number, and all strings have methods and properties available to them.
How To Work with Web Data Using Requests and Beautiful Soup with Python 3
Tutorials
Data Analysis
Development
Programming Project
Python
Introduction> Introduction # The web provides us with more data than any of us can read and understand, so we often want to work with that information programmatically in order to make sense of it.
How To Install the Anaconda Python Distribution on Ubuntu 18.04
Tutorials
Data Analysis
Development
Python
Ubuntu 18.04
Introduction> Introduction # Designed for data science and machine learning workflows, Anaconda is an open-source package manager, environment manager, and distribution of the Python and R programming languages. It is commonly used for large-scale data processing, scientific computing, and predictive analytics.
How To Install Python 3 and Set Up a Programming Environment on Ubuntu 18.04 [Quickstart]
Tutorials
Development
Python
Quickstart
Ubuntu 18.04
###Introduction
Python is a flexible and versatile programming language, with strengths in scripting, automation, data analysis, machine learning, and back-end development.
This tutorial will walk you through installing Python and setting up a programming environment on an Ubuntu 18.
How To Access Elements in the DOM
Tutorials
Development
JavaScript
Introduction> Introduction # In Understanding the DOM Tree and Nodes, we went over how the DOM is structured as a tree of objects called nodes, and that nodes can be text, comments, or elements.
How To Create Django Models
Tutorials
Development
Django
Programming Project
Python
Ubuntu 20.04
Introduction> Introduction # In the previous tutorial, “How To Create a Django App and Connect it to a Database,” we covered how to create a MySQL database, how to create and start a Django application, and how to connect it to a MySQL database.
How To Install Anaconda on Ubuntu 18.04 [Quickstart]
Tutorials
Development
Python
Quickstart
Ubuntu 18.04
Introduction> Introduction # Designed for data science and machine learning workflows, Anaconda is an open-source package manager, environment manager, and distribution of the Python and R programming languages.
This tutorial will guide you through installing Anaconda on an Ubuntu 18.
An Introduction to JSON
Tutorials
Conceptual
Development
JavaScript
Introduction> Introduction # JSON, short for JavaScript Object Notation, is a format for sharing data. As its name suggests, JSON is derived from the JavaScript programming language, but it’s available for use by many languages including Python, Ruby, PHP, and Java.
How To Use .map() to Iterate Through Array Items in JavaScript
Tutorials
Development
JavaScript
Introduction> Introduction # From the classic for loop to the forEach() method, various techniques and methods are used to iterate through datasets in JavaScript. One of the most popular methods is the .
Understanding Tuples in Python 3
Tutorials
Development
Python
Introduction> Introduction # A tuple is a data structure that is an immutable, or unchangeable, ordered sequence of elements. Because tuples are immutable, their values cannot be modified. The following is an example tuple that consists of four elements:
How To Write Your First Python 3 Program
Tutorials
Development
Programming Project
Python
Introduction> Introduction # The “Hello, World!” program is a classic and time-honored tradition in computer programming. Serving as a simple and complete first program for beginners, as well as a good program to test systems and programming environments, “Hello, World!
How To Use Array Methods in Ruby
Tutorials
Development
Ruby
Introduction> Introduction # Arrays let you represent lists of data in your programs. Once you have data in an array, you can sort it, remove duplicates, reverse its order, extract sections of the array, or search through arrays for specific data.
How To Install Python 3 and Set Up a Local Programming Environment on macOS
Tutorials
Development
Python
Introduction> Introduction # Python is a versatile programming language that can be used for many different programming projects. First published in 1991 with a name inspired by the British comedy group Monty Python, the development team wanted to make Python a language that was fun to use.