ECX 30 Day of Code and Design
Beginner and Intermediate Python Projects

Search for a command to run...
Articles tagged with #python3
Beginner and Intermediate Python Projects

Intermediate Python Project

ECX 30 Days of Code and Design Day 29 GPA Calculator Task Write a function that: Takes as parameters, a list of tuples containing grades and their corresponding units. (E.g.: [ ("A", 2), ("A",3), ("B", 2) … etc.]) Computes and returns the student GP...

ECX 30 Days of Code and Design Day 25 Binary Search Algorithm Task Binary search is a basic algorithm used to find the position of a target value within a sorted list. For today's task, write a function that takes in two parameters: a list of alphabe...

ECX 30 Days of Code and Design Day 24 Bubble Sort Task Bubble sort is a basic algorithm for sorting (rearranging in ascending or descending order) elements in a list. It operates as follows: Iterate across a list, element by element Upon encounterin...

ECX 30 Days of Code and Design Day 23 Sieve of Eratosthenes Task The sieve of Eratosthenes is an ancient algorithm for finding all primes less than a given value N. It operates as follows: Create a list of consecutive integers from 2 through n: (2, ...
