Python tutorials

How to Replace a String in Python

If you’re looking for ways to remove or replace all or part of a string in Python, then this tutorial is for you. You’ll be taking a fictional chat room transcript and sanitizing it using both the .replace() method and the re.sub() function. In Python, the .replace() method and the re.sub() function are often used to clean up text by removing strings or substrings or replacing them. In this tutorial, you’ll be playing the role of a developer for a […]

Read more

Análise de Sentimentos em Português utilizando Machine Learning

Guia prático de um projeto de Processamento de Linguagem Natural (NLP) O processamento de linguagem natural (Natural Language Processing, NLP) é um ramo da inteligência artificial (IA) que permite aos computadores compreender, gerar e manipular a linguagem humana. O NLP está inserida no nosso cotidiano nas pesquisas que fazemos no Google, por exemplo, e faz    

Read more

Italian Politics in 4-Years-Tweets

In two weeks, on the 25th of September 2022, Italy will face the general election through which the members of Parliament will be selected. Several parties will compete, but only a bunch of them have the possibility to gain a significant number of seats in the two chambers of the Parliament. Essentially these belong to four coalitions (even though the last one is made by just one party):

Read more

Python Basics: Conditional Logic & Control Flow

Much of the Python code you’ll write is unconditional. That is, the code does not make any choices. Every line of code is executed in the order that it’s written or in the order that functions are called, with possible repetitions inside loops. In this course, you’ll learn how to use conditional logic to write programs that perform different actions based on different conditions. Paired with functions and loops, conditional logic allows you to write complex programs that can handle […]

Read more

Deploying Machine Learning Project On Website

Do you want to deploy your project online? would you like to Integrate it with the web? Well, you have crashed at the right place. Let us get started from scratch. It is quite easy to implement Machine Learning Algorithms compared to deploying those projects and have good use of them in our community. I will guide you on how to deploy your projects in a few simple steps using streamlit.

Read more
1 93 94 95 96 97 191