Password Manager
import tkinter from tkinter import messagebox from tkinter import PhotoImage import random # ---------------------------- PASSWORD...
import tkinter from tkinter import messagebox from tkinter import PhotoImage import random # ---------------------------- PASSWORD...
import tkinter from tkinter import PhotoImage # ---------------------------- CONSTANTS ------------------------------- # PINK = "#e2979c"...
import pandasdata = pandas.read_csv( 'nato_phonetic_alphabet.csv' )phonetic_dict = {key.letter:key.code for (row,key) in data.iterrows()}...
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...
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...
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...
This project really helped me understand OOP more and grasp the concept of inheritance in classes. screen = Screen() screen.setup(height...
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...
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 is object oriented programming and the principle itself is quite simple. You assign a class and create attributes and methods....
OOP is object oriented programming which helps shorten code so that it is more legible. OOP organizes coding in classes, attributes and...
from menu import MENU,resources revenue = 0 def count_money(_):   global revenue   quarters = 0.25 * int(input('Quarters:'))   ...
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,...
Compared to other possible challenges, this project was measurably easy and I was quick to finish it. import random from art import logo...
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...
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...
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...
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...
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...