Skip to main content

Python

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.
Common Python Tools: Using virtualenv, Installing with Pip, and Managing Packages
Tutorials CentOS Miscellaneous Python
Introduction> Introduction # When it comes to working with Python, especially in the domain of application development, there are certain tools that you will see being mentioned often in various places or open source code.
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 Set Up an Apache, MySQL, and Python (LAMP) Server Without Frameworks on Ubuntu 14.04
Tutorials Apache LAMP Stack MySQL Python Ubuntu
Introduction> Introduction # This article will walk you through setting up a server with Python 3, MySQL, and Apache2, sans the help of a framework. By the end of this tutorial, you will be fully capable of launching a barebones system into production.
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 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.
How To Install Python 3 and Set Up a Local Programming Environment on Windows 10
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.
How To Serve Django Applications with Apache and mod_wsgi on Ubuntu 14.04
Tutorials Apache Django Python Python Frameworks Ubuntu
Introduction> Introduction # Django is a powerful web framework that can help you get your Python application or website off the ground quickly. Django includes a simplified development server for testing your code locally, but for anything even slightly production related, a more secure and powerful web server is required.
Understanding Lists in Python 3
Tutorials Development Python
Introduction> Introduction # A list is a data structure in Python that is a mutable, or changeable, ordered sequence of elements. Each element or value that is inside of a list is called an item.
Python Machine Learning Projects — A DigitalOcean eBook
Tutorials Books Development DigitalOcean Machine Learning Python
Download the Complete eBook! Machine Learning Projects: Python eBook in EPUB format Machine Learning Projects: Python eBook in PDF format Machine Learning Projects: Python eBook in Mobi format Introduction to the eBook> Introduction to the eBook # As machine learning is increasingly leveraged to find patterns, conduct analysis, and make decisions — sometimes without final input from humans who may be impacted by these findings — it is crucial to invest in bringing more stakeholders into the fold.
How To Plot Data in Python 3 Using matplotlib
Tutorials Data Analysis Development Programming Project Python
Introduction> Introduction # Python is great for processing data. Often a data set will include multiple variables and many instances, making it hard to get a sense of what is going on.
How To Do Math in Python 3 with Operators
Tutorials Development Python
Introduction> Introduction # Numbers are extremely common in programming. They are used to represent things like screen size dimensions, geographic locations, money and points, the amount of time that passes in a video, positions of game avatars, and colors through assigning numeric codes.
How To Add Authentication to Your App with Flask-Login
Tutorials Python Python Frameworks
Introduction> Introduction # Allowing users to log in to your app is one of the most common features you will add to your web applications. You can add authentication to your Flask app with the Flask-Login package.
How to Deploy Python WSGI Applications Using uWSGI Web Server with Nginx
Tutorials CentOS Miscellaneous Nginx Python
Introduction> Introduction # As introduced in our Python Web Server Comparison article, uWSGI is a vast project, capable of doing much more than serving web applications alone. However, its wide array of functionality, combined with relative ease of configuring it, make it an excellent choice for many deployment needs– especially when it is coupled with Nginx.
How To Package And Distribute Python Applications
Tutorials Deployment Development Python
Introduction> Introduction # All Python libraries (i.e. application packages) that you download using a package manager (e.g. pip) are distributed using a utility dedicated to do the job. These utilities create “Python distributions” which are basically versioned (and compressed) archives.
How to Install, Run, and Connect to Jupyter Notebook on a Remote Server
Tutorials Applications Python Ubuntu
The author selected the Apache Software Foundation to receive a $100 donation as part of the Write for DOnations program. Introduction> Introduction # Jupyter Notebook is an open-source, interactive web application that allows you to write and run computer code in more than 40 programming languages, including Python, R, Julia, and Scala.
How To Install Python 3 and Set Up a Local Programming Environment on CentOS 7
Tutorials CentOS Development Python
###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.
How To Install Python 3 and Set Up a Programming Environment on an Ubuntu 20.04 Server
Tutorials Development Python Ubuntu Ubuntu 20.04
Introduction> Introduction # The Python programming language is an increasingly popular choice for both beginners and experienced developers. Flexible and versatile, Python has strengths in scripting, automation, data analysis, machine learning, and back-end development.
How To Use Break, Continue, and Pass Statements when Working with Loops in Python 3
Tutorials Development Python
Introduction> Introduction # Using for loops and while loops in Python allow you to automate and repeat tasks in an efficient manner. But sometimes, an external factor may influence the way your program runs.
How To Convert Data Types in Python 3
Tutorials Development Python
Introduction> Introduction # In Python, data types are used to classify one particular type of data, determining the values that you can assign to the type and the operations you can perform on it.