How to Create a Tic-tac-toe Game Using Python
Python Beginner/Intermediate Project

Search for a command to run...
Series
Beginners and Intermediate Python projects.
Python Beginner/Intermediate Project

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"]) => ...

ECX 30 Days of Code Day 2 Mode of a List Task Extend the function from day 1 to also print out the modal element(s) of the input list; i.e., to determine which element occurs the most. If there are multiple elements, return a list containing all. Dis...

ECX 30 Days of Code Day 3 Palindromic Numbers Task A palindromic number is a number that remains the same when its digits are reversed. Write a function that prints out all palindromic numbers less than a given input, and returns the total number of ...

ECX 30 Days of Code Day 4 Decimal to Hexadecimal. Task Without using the inbuilt hex() function, write a function that takes an integer as input, and prints out its conversion to hexadecimal as output. Discussion To convert decimal (base 10) to hexad...

ECX 30 Days of Code and Design Day 5 Fibonacci Task: Using recursion, write a function that prints out the first “n” members of the Fibonacci series. (The Fibonacci series is a series of integers, starting from 0 and 1, for which each term is the sum...
