Skip to main content

Development

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.
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 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 Write Comments in Python 3
Tutorials Development
Introduction> Introduction # Comments are lines that exist in computer programs that are ignored by compilers and interpreters. Using comments in programs can make code more readable for humans, as it provides some information or explanation about what each part of a program is doing.
Hadoop, Storm, Samza, Spark, and Flink: Big Data Frameworks Compared
Tutorials Big Data Conceptual Development
Introduction> Introduction # Big data is a blanket term for the non-traditional strategies and technologies needed to gather, organize, process, and gather insights from large datasets. While the problem of working with data that exceeds the computing power or storage of a single computer is not new, the pervasiveness, scale, and value of this type of computing has greatly expanded in recent years.
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 Use the Switch Statement in JavaScript
Tutorials Development JavaScript
Introduction> Introduction # Conditional statements are among the most useful and common features of all programming languages. How To Write Conditional Statements in JavaScript describes how to use the if, else, and else if keywords to control the flow of a program based on different conditions, which in JavaScript are often the result of user input.
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.
Using While Loops and Do…While Loops in JavaScript
Tutorials Development JavaScript
Introduction> Introduction # Automation is the technique of making a system operate automatically; in programming, we use loops to automate repetitious tasks. Loops are one of the most useful features of programming languages, and in this article we will learn about the while and do.
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.
Understanding Variables, Scope, and Hoisting in JavaScript
Tutorials Development JavaScript
Introduction> Introduction # Variables are a fundamental part of many programming languages, and are among the first and most important concepts for novice coders to learn. There are a number of different properties of variables in JavaScript, as well as several rules which must be followed when naming them.
Built-in Python 3 Functions for Working with Numbers
Tutorials Development Python
Introduction> Introduction # Python 3 comes with many built-in functions that you can readily use in any program that you’re working on. Some functions enable you to convert data types, and others are specific to a certain type, like strings.
How To Crawl A Web Page with Scrapy and Python 3
Tutorials Development Programming Project Python
Introduction> Introduction # Web scraping, often called web crawling or web spidering, is the act of programmatically going over a collection of web pages and extracting data, and is a powerful tool for working with data on the web.
How To Handle Plain Text Files in Python 3
Tutorials Development Python
Introduction> Introduction # Python is a great tool for processing data. Some of the most common tasks in programming involve reading, writing, or manipulating data. For this reason, it’s especially useful to know how to handle different file formats which store different types of data.
How To Add JavaScript to HTML
Tutorials Development JavaScript
Introduction> Introduction # JavaScript, also abbreviated to JS, is a programming language used in web development. As one of the core technologies of the web alongside HTML and CSS, JavaScript is used to make webpages interactive and to build web apps.
Data Analysis and Visualization with pandas and Jupyter Notebook in Python 3
Tutorials Data Analysis Development Programming Project Python
Introduction> Introduction # The Python pandas package is used for data manipulation and analysis, designed to let you work with labeled or relational data in an intuitive way. The pandas package offers spreadsheet functionality, but because you’re working with Python, it is much faster and more efficient than a traditional graphical spreadsheet program.