top of page

Password Manager

import tkinter from tkinter import messagebox from tkinter import PhotoImage import random # ---------------------------- PASSWORD...

Pomodoro alarm

import tkinter from tkinter import PhotoImage # ---------------------------- CONSTANTS ------------------------------- # PINK = "#e2979c"...

NATO alphabet

import pandasdata = pandas.read_csv( 'nato_phonetic_alphabet.csv' )phonetic_dict = {key.letter:key.code for (row,key) in data.iterrows()}...

State guessing game

Game where there is a picture and the correct text you input flies to the place where the state is. import turtle import pandas import...

Working with CSV files

I worked with txt files and py files the most but I extended my reach to csv files for data organization and learned about the pandas...

Reading and writing files

I learned how to read write txt files. I learned how to navigate files. I always wondered how people sent automated emails to so many...

Ping-Pong game

This project really helped me understand OOP more and grasp the concept of inheritance in classes. screen = Screen() screen.setup(height...

Making the well-known Snake game

Everyone has atleast had one instance in which they downloaded snake.io on their phone and had a few goes at it. I wanted to replicate...

Making a Race game

This project was to enhance my understanding of OOP and the modules in python. This project is done by adjusting the speeds of each...

OOP

OOP is object oriented programming and the principle itself is quite simple. You assign a class and create attributes and methods....

Coffee machine coding with OOP

OOP is object oriented programming which helps shorten code so that it is more legible. OOP organizes coding in classes, attributes and...

Coffee machine coding

from menu import MENU,resources revenue = 0 def count_money(_):     global revenue     quarters = 0.25 * int(input('Quarters:'))    ...

Higher or Lower game

The higher or lower game is a game where the player is asked whether a specific person or thing has more of a quantity such as views,...

Making a number guessing game

Compared to other possible challenges, this project was measurably easy and I was quick to finish it. import random from art import logo...

Making a Blackjack game

Blackjack is a card game where you are given 2 cards and either hold or choose new cards depending on whether you feel you are closer to...

Making a calculator

When playing with numbers, a calculator is always needed. Why not make one myself? There are many ways to make a calculator but I used...

The Caesar Cipher

Have you ever wished to communicate with your friend with an alphabet only the two of you were aware of? The caesar cipher is a way of...

Making a Hang-man game

While revising loops such as while and for, I decided to make a hang-man game: the childhood game that everybody used to play during...

Making a Rock-Paper-Scissors game

What made me do this? I remember being moderately confused when we entered the random module session in class. First of all there were a...

© 2024 by GifTED. Powered and secured by Wix

bottom of page