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

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

ECX 30 Days of Code and Design Day 10 USSD Bank Service Task Create a mock USSD service that takes users' input and provides appropriate responses. Users provide a USSD code as input Users can then choose among a list of options (with numbers), whet...

ECX 30 Days of Code and Design Day 8 Caesar Cipher A Caesar cipher is an ancient form of encryption. It involves taking a text (a string) as input and encoding it by replacing each letter with the one n-steps next to it in the alphabet. (E.g., shifti...

Mad Libs is a word game which consists of blanks with keywords underneath for the players to fill. The keywords could be a ‘noun’, ‘pronoun’, ‘place’, ‘celebrity name,’ etc. In this article, instead of blanks, capital letters of the keywords would ...

ECX 30 Days of Code and Design Day 7 Wordle Wordle is a single-player game, in which a user is required to guess a 5-letter hidden word in 6 attempts. Task The user makes a first guess (e.g., "Skate"). Print out a progress guide like this; "√××√+". ...

ECX 30 Days of Code: Day 1 List to Set Task Create a function that takes in a list as input, and returns (and prints) a new list with all repetitions reduced to one appearance alone, as output. e.g.; f(["a", "b", "a", "a", 3, 3, 2, "hello", "b"]) => ...
