atlas news
    
Python Guides
28  mars     12h59
How to Replace Python List
Saurabh Kumar    In this Python tutorial, I will show you how to replace a Python list using several methods. While building a student management application in Python, I had to implement the functionality of updating the student grades in case of correction or reevaluation, which were stored in a list. So, using...
    12h41
How to Convert Bool to Int in Python
Bijay Kumar    In this Python tutorial, I will demonstrate how to convert bool to int in Python. For my data analysis project, I used the music website dataset, which I needed to analyze to extract insight from it. A column in the dataset named premium represented whether the user was a premium member. The column...
    12h30
How to Convert PDF to Docx in Python
Saurabh Kumar    In this Python tutorial, I will show you how to convert pdf to docx in Python using the third party Python package. In my online PDF reader and edition website, I had to add the functionality of converting the PDF file to docx format. To achieve this task, I used the package pdf docx in my project,...
27  mars     16h17
How to Write List To CSV Python
Bijay Kumar    In this Python tutorial, I will show you how to write a list using CSV Python. This is the command task in data science. When I was working on the dataset for machine learning, I had to save it to a CSV file after analyzing it. I used the Pandas library for data analysis, so ... Read more...
    16h05
Python Create Empty Dictionary
Bijay Kumar    In this Python tutorial, You will learn about Python to create an empty dictionary. In my data science project, I had to write a program to count the number of words in the text and store them with their frequencies. To accomplish that, I created an empty dictionary that stores each word as a key ....
26  mars     18h35
How to Check If Two Dictionaries are Equal in Python [4 ways]
Bijay Kumar    In this Python tutorial, we will understand How Python check if two dictionaries are equal or not in some different ways or techniques with practical examples. While working on a Python Project, I needed to check whether two dictionaries were equal before merging the data. So, I found multiple...
    17h56
How to use Python While with Assignment[4 Examples]
Bijay Kumar    In this Python tutorial, you will learn How to use Python While with Assignment , with multiple examples and different approaches. While working on a project, I was assigned to optimise the code. In the research, I found that we can assign variables within a while loop in Python. This helps to...
    17h44
How to Create a Python Empty Matrix [3 ways]
Bijay Kumar    In this Python tutorial, you will learn How to Create a Python Empty Matrix using various techniques and practical examples. The matrix is generally used in statistical calculations, machine learning, etc. But before that, you have to understand the basics of the matrix, so here I will teach you ...
22  mars     12h59
Python Copy Dict Without One Key
Bijay Kumar    This Python tutorial will teach you about Python copy dict without one key. I was building the product recommender model and collected a dataset containing different products; some of the columns in the dataset were unnecessary, like the product ID column. Data was collected in dictionary form, so...
    12h53
How to Remove Character from String Python By Index
Bijay Kumar    In this Python tutorial, I will show you how to remove characters from a string Python by index. As a data engineer or analyst, you must know how to process the dataset; one crucial task is to clean the dataset from unwanted noise. Sometimes, you need to clean the dataset of unnecessary characters;...