atlas news
    
Pracity
10  octobre     17h03
Data Visualization Tools for Excel
Practity    Top Data Visualization Tools for Excel In today’s data driven world, the humble Excel spreadsheet remains a staple tool for businesses of all sizes. While Excel offers a wealth of functionalities, the true power lies in transforming raw data into visually compelling dashboards and reports....
19  juin     08h59
Nim Game with Python
Practity    Simple Python project for intermediates Nim Game with Python Nim is a game of logic and strategy. The winner of Nim is the player who removes the last of matchsticks. The goal of this simple Python project for intermediates is to write a program to play a version of the game where the second ...
16  juin     11h00
Biorhythms with Python
Practity    Biorhythms with Python Write a Python program that calculates and displays the intellectual, emotional, and physical biorhythm cycles of a user, based on his her birth date. The program should: . Prompt the user to enter his her birth date year, month, and day . . Calculate the user’s current...
12  mai     22h33
How Can I Practice Excel at Home?
Practity    How Can I Practice Excel at Home In today’s data driven business landscape, proficiency in Microsoft Excel has become an essential skill. Whether you’re a student, a professional, or an aspiring analyst, honing your Excel expertise can open doors to countless opportunities. Fortunately, the...
11  mai     17h41
Amicable Pairs
Practity    Amicable Pairs with Python Project to Learn Python Amicable numbers, also known as an amicable pair, are two different numbers such that the sum of the proper divisors of each number is equal to the other number. In other words, if the sum of the proper divisors of one number equals the other...
10  mai     17h18
Python Class Challenge
Practity    Python Class Challenge Code a Python class named submarine to control the navigation of a submarine. Create an attribute named depth that saves the current meters under water of the submarine. Use a property to set the depth attribute and make it hidden. Add a method named rise to ascend...
06  mai     19h09
Order by New Alphabet
Practity    New Alphabet Sort Challenge Given a new alphabet of letters with no duplicates and arranged in the following order: ZRSTHIGMAUNOQEDPCKJYFWLVBX Write a Python program that sorts the words of a given sentence based on this new alphabet order. The program should print the words of the next...
05  mai     09h16
BlackJack with Python
Practity    Blackjack Simulator Python Game project Blackjack is one of the most popular card games played in Casinos worldwide. The game is also known as because the primary objective is to reach a hand value of or as close to it as possible without exceeding it. The goal of this Python game project is ...
03  mai     17h03
Create Data Table Project
Practity    Create Data Table Project Python Data Problem Given the following sales data EUR of shops online during the first half of the year: Sales in January of all shops ’, ’, ’, ’, ’, ’ Sales in February of all shops ’, ’, ’, ’, ...
02  mai     11h46
Zig Zag Message Encryption
Practity    Zig Zag Message Encryption Write a Python program to encrypt a message with the rail fence method. The program will ask the user to input the message to hide and print out the encoded output, This method consists of writing the text as a zig zag with a given height and extract the ciphertext which...
01  mai     18h57
How Do I Know If I am proficient in Python?
Practity    How Do I Know If I am proficient in Python Python, with its simplicity and versatility, has become one of the most popular programming languages in the world. Whether you’re a beginner or an experienced developer, assessing your proficiency in Python is crucial for personal and professional...
30  avril     16h38
Fractions Calculator Project
Practity    Fractions Project with Python Write a Python program that performs addition and subtraction operations on fractions. The program should specifically calculate the following operations: . Addition: . . Subtraction: Ensure that your program does not use any external...
29  avril     11h28
Shopping List Program
Practity    Shopping List Program Assume you’re given EUR to buy vegetables for the week in the supermarket. The unit prices in cents are the following: Tomato: , Onion: , Salad: , Garlic: , Pepper: , Cucumber: Write a Python program that prints out the combination of vegetables you can...
27  avril     19h13
Decoding Project
Practity    Decoding Project with Python Imagine there is new language whose only character is case sensitive X. We know that the following X’s combinations correspond to a certain latin letter: XXx a xXX e XxX H xxx o Xxx r XXX u xxX w xXx y The goal of this project with Python is to write a program...
    08h32
Invisible Friend Game
Practity    Invisible Friend Game Python Problem with Solutions The invisible friend game is a traditional gift exchange played in offices where everybody is randomly assigned to give a gift to other coworker. To make things exciting, the matching is random you cannot pick your gift recipient and nobody...
25  avril     18h29
Self-Descriptive Numbers Program
Practity    Self Descriptive Numbers Program Coding Project in Python Write a Python program that asks the user to enter a number and checks whether the number is self descriptive. Considering the digit positions are labeled to N, it is a self descriptive number if the digit in each position is equal to...
    14h29
Word Pattern Finder
Practity    Word Pattern Finder Python problem for intermediates Write a Python program to find patterns in words. The input of the program will be the following list of words: ballooned’,’inheritance’ ,’combination’,’despite’,’pommee’ ,’rainfall’,’inches’, seek’,’highest’,’trustworthiness’, caribbean’, ...
24  avril     17h49
Largest and Smallest Integers Combinations
Practity    Largest and Smallest Integers Combinations Python Practice Exercise Given a list of integers separated by a single space, write a Python script that prints out the largest and smallest values that can be obtained by concatenating the integers together. The program should ask the user to enter the...
23  avril     20h01
Die Hard 3 Jugs Problem
Practity    Die Hard Jugs Problem with Python Write a Python program that simulates the process of obtaining exactly liters of water using two buckets. The first bucket can hold liters m , and the second bucket can hold liters n . You have the following actions available: fill a bucket until it is ...
21  avril     22h14
Barcode Validator Project
Practity    Barcode Validator Python Code Project Barcodes are th digit numbers to identify products used worldwide. The last digit is a redundant check digit, used to catch errors. Using some simple calculations, a scanner can determine, given the first digits, what the check digit must be for a valid...
    09h51
Shipping Container Optimization Project
Practity    Shipping Container Optimization Project You work in a shipping company and you are responsible for the containers optimization. Your task is to load contaniers with the maximum number of packages so that the company doesn’t waste space. To do so, you decide to build a simple program using Python...
19  avril     19h16
Sort Exercise
Practity    Sort Exercise with Python Write a Python program to sort the elements of the following array in ascending order, using the specified pair wise dealing method: Array: ,,, ,,, , Start by comparing and swapping the first pair of elements. Then, compare and swap the second...
    17h07
Fungi Reproduction
Practity    Fungi Reproduction Problem Python Practice Question Many species can reproduce asexually. After days, some fungi can produce another fungi on a day. Starting at the beginning of day, how many fungi could it be by the end of day For example, at the end of day there will be The post...
18  avril     11h36
Budget Tracker Program
Practity    Budget Tracker Program Python Coding Practice Write a Python program to create a household budget tracker. The program should take the following fixed expenses as input: Electricity: Netflix: Phone: Gasoline: Supermarket: Car insurance: Rent: ...
16  avril     18h06
Color Format Converter Project
Practity    Color Format Converter Project Programming Project in Python The RGB color model is an additive model in which red, green, and blue light are added together in various ways to reproduce a broad array of colors. It is the most common color model used in electronic displays, such as televisions,...
14  avril     19h18
Stock Trading Program
Practity    Stock Trading Program Python Programming Exercise The goal of this Python programming exercise is to identify trends in stock prices. Given the following summary of stock prices USD of a public company each day during the last business days: Day : , Day : . , Day : . , Day : . ,...
13  avril     08h33
Descriptive Statistics Class
Practity    Descriptive Statistics Class Python OOP Problem The goal of this Python oop problem is to write a Python class called DataAnalyzer that allows users to calculate statistical information for a data series. For example, assume you are a teacher and you need the figures of all your students. In...
12  avril     18h42
Compute Car’s Fuel Consumption
Practity    FUEL CONSUMPTION PROGRAM Coding Project in Python In this coding project in Python you must calculate the gasoline consumption of a car based on the kilometers traveled, average speed, and number of passengers in the car during a day period. The last two weeks, you have written down the...
10  avril     22h31
Air Miles Calculator
Practity    Air Miles Calculator Write a Python function that calculates the miles gained by frequent travelers when flying with a specific European airline. The program should prompt the user to enter the number of flights he she has booked during the last year. If the number of flights is less than, the...
06  avril     18h01
Shape Areas Project
Practity    Shape Areas Project Python OOP coding project Write a Python class that includes three methods for calculating the areas of three different geometric shapes: circles, rectangles, and cylinders. The formulas for each shape are: Circle: Area Ï r, where Ï is the mathematical constant Math.PI...
05  avril     16h59
Python Programming Problem
Practity    Python Programming Problem Given a seven digit telephone number excluding and , write a Python script that generates and prints the first possible words that can be formed using the alphabetic characters corresponding to each digit on a telephone dial. The alphabetic correspondences of...
04  avril     21h59
Python Loops Math Problem
Practity    Python Loops Problem Write a Python program with for loops to generate a list of all the pairs of positive two digit numbers whose sum is , and whose difference is . HINTS Iterate through all possible combinations of two digit numbers. For each pair of numbers, it checks, the sum must be ...
03  avril     19h01
Python Loops Practice Question
Practity    Python Loops Practice Question Write a Python application that generates a table displaying the results of multiplying N by , , and . The table should include the values for N , , , , and . Each row of the table should show the value of N, followed by the corresponding results...
30  mars     20h04
Bus Seat Reservation Project
Practity    Bus Seat Reservation Project Coding Challenge in Python Write a Python program to book seats in a bus commercial route. The seats map of the bus is as follows: ABC ABC ABC ABC ABC ABC ABC ABC ABC ABC The program will display the The post Bus Seat Reservation Project...
    11h59
Staircase Steps Challenge
Practity    Staircase Python Challenge A child is running up a staircase with N steps, and can hop step, steps or steps at a time. Write a Python program that prompts the user to enter the number of steps in a staircase. The program should then provide the following information: The total The...
23  mars     12h27
Advantages of Excel for students and teachers
Practity    Excel in the Classroom Advantages of Excel for students and teachers Advantages for Students Collaboration One of the key benefits for students of using Excel is its cloud storage capability. When teachers upload practice materials or assignments, students can access these files in real time,...
13  mars     23h26
Data Modeling Explained
Practity    Introduction to Data Modeling Data modeling is a crucial process in the field of information technology that involves creating a visual representation of an information system or its components. It serves as a means to communicate the relationships and connections between different data points...
12  mars     19h06
The Developer Mindset
Practity    The Developer Mindset Programming can seem like a daunting endeavor, filled with complex algorithms and intricate logic. However, with the right mindset and approach, anyone can learn to think like a programmer. This article will debunk common misconceptions about programming and shed light on how...
11  mars     20h52
Number to English Project
Practity    Number to English Converter Project Write a Python script that requests the user to enter an integer and return the English name of that number. You should support both positive and negative numbers. Do not use the inflect library. Tip Solve this programming challenge breaking down the number into...
10  mars     23h35
Python Pattern Exercises
Practity    Python Pattern programs for Practice Write a Python program to display three different patterns: . An equilateral triangle pattern with ’ using rows. . An empty square pattern with only the border formed by ’ signs using rows. . An equilateral pyramid pattern with even numbers starting...
09  mars     18h15
Common Problems Faced by Students Learning Python
Practity    The Most Common Problems Faced by Students Learning Python Learning to code is an exhilarating journey filled with challenges, difficulties, and struggles. As programming students dive headfirst into the world of coding, they are faced with a myriad of obstacles that test their problem solving...
07  mars     23h06
What is Synthetic Data?
Practity    What is Synthetic Data In today’s data driven world, the demand for high quality, diverse datasets is ever increasing. However, acquiring real world data can be challenging due to privacy concerns, limited access, or simply the cost and time involved in collecting and processing large datasets....
06  mars     07h55
Eurovision Results Sort Project
Practity    Eurovision Results Sort Project Python Sort Project Given the last year results of Eurovision, the annual international song competition featuring countries from Europe: Albania: Armenia: Austria: Belgium: Croatia: Finland: France: Germany: Italy: Poland: Portugal: ...
01  mars     13h56
Excel Shortcuts
Practity    Excel Key Shortcuts to Boost your Productivity Introduction In today’s fast paced world, time is of the essence, especially when it comes to working with spreadsheets. Excel, being one of the most widely used spreadsheet software, offers a plethora of features and functionalities to help users...
29  février     20h10
Excel formatting tips and techniques
Practity    What are Excel formatting tips and techniques Excel is a powerful tool for organizing and analyzing data, but it’s not just about numbers and formulas. Formatting plays a crucial role in presenting data in a clear and professional manner. In this article, we will explore essential Excel...
    15h26
Bingo Game Project
Practity    Bingo Game Project Write a Python code game to play a simplified version of Bingo between two players. The program should generate and display the cards for both players. Each card should consist of numbers arranged in two rows and five columns. The program will prompt the players to indicate if...
27  février     15h58
Creating Interactive Dashboards in Excel
Practity    How Interactive Dashboards in Excel Can Transform Raw Data into Actionable Insights The importance of data visualization Data, in its raw form, can be overwhelming and difficult to comprehend. It is essential to transform this chaos into clarity by using effective data visualization and...
25  février     19h51
Data Visualization Exercises
Practity    Python Data Visualization Exercises The goal of this Python data visualization exercises is to display some of the results of the New Coder survey. The goal of the study was to get an insight into the methods and motivations of thousands of students that were learning to code in . Here you...
    10h41
Excel Quiz for Intermediates
Practity    Excel Quiz for Intermediate Students This quiz is designed to test your knowledge of fundamental Excel topics including tools, data management, formatting, functions, formulas, pivot tables, and charts. Assessing your understanding of these core subjects will help you gauge your proficiency in...
24  février     10h32
Excel Data Cleaning Techniques
Practity    Data Cleaning Techniques in Excel In today’s data driven world, the importance of clean and reliable data cannot be overstated. As the saying goes, garbage in, garbage out. When it comes to data analysis, the accuracy and reliability of the results are directly dependent on the quality of data....