Python

How To Create an Intelligent Chatbot in Python Using the spaCy NLP Library — step-by-step Python tutorial on Progressive Robot

How To Create an Intelligent Chatbot in Python Using the spaCy NLP Library

In this tutorial, you will create a chatbot that not only helps users simplify their interactions with a software system, but is also intelligent enough to communicate with the user in natural language (American English in this tutorial). The chatbot will use the OpenWeather API to tell the user what the current weather is in any city of the world, but you can implement your chatbot to handle any use case where and API is available.

Read more
Como Fazer um Programa de Calculadora Simples no Python 3 — step-by-step Python tutorial on Progressive Robot

Como Fazer um Programa de Calculadora Simples no Python 3

A linguagem de programação Python é uma grande ferramenta para utilizar ao trabalhar com números e avaliar expressões matemáticas. Esta qualidade pode ser utilizada para fazer programas úteis. Este tutorial apresenta um exercício de aprendizado para ajudá-lo a fazer um…

Read more
Python Data Types — step-by-step Python tutorial on Progressive Robot

Python Data Types

This is an article about Python data types. It discusses different kinds of data types and their functionality. Some examples of data types are numeric, string, sequence, and mapping.

Read more
How To Use List Methods in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Use List Methods in Python 3

In this tutorial, we’ll go through the built-in methods that you can use to work with the list data structure in Python. We’ll go through adding items to and removing items from lists, extending lists, reversing and sorting lists, and more.

Read more
How To Create a Python Class Generator for VS Code — step-by-step Python tutorial on Progressive Robot

How To Create a Python Class Generator for VS Code

If you hate stubbing out Python classes, here’s how you can create an extension in Visual Studio Code to do it for you. In this article, you’ll see how to create that extension. You’ll prompt for user input, use array map and join functions, use ES6 template literals, and write to the file system.

Read more
How To Use the collections Module in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Use the collections Module in Python 3

In this tutorial, we’ll go through three classes in the collections module to help you work with tuples, dictionaries, and lists. We’ll use namedtuples to create tuples with named fields, defaultdict to concisely group information in dictionaries, and deque to efficiently add elements to either side of a list-like object.

Read more
MNIST Dataset in Python - Basic Importing and Plotting — step-by-step Python tutorial on Progressive Robot

MNIST Dataset in Python – Basic Importing and Plotting

URL: https://www.progressiverobot.com/mnist-dataset-in-python/ Welcome to this tutorial on the MNIST dataset. In this tutorial, we will learn what is the MNIST dataset, how to import it in Python, and how to plot it using [matplotlib](/community/tutorials/python-matplotlib). What is the MNIST dataset? MNIST set is a large collection of handwritten digits. It is a very popular dataset in […]

Read more
CHAT