Password Manager
import tkinter from tkinter import messagebox from tkinter import PhotoImage import random # ---------------------------- PASSWORD...
2 min read
0 views
0 comments
Pomodoro alarm
import tkinter from tkinter import PhotoImage # ---------------------------- CONSTANTS ------------------------------- # PINK = "#e2979c"...
2 min read
0 views
0 comments

Making a unit converter
import tkinter screen = tkinter.Tk () screen.title('Mile to km converter') screen.minsize(width = 300, height = 150) #blank blank =...
2 min read
0 views
0 comments
NATO alphabet
import pandasdata = pandas.read_csv( 'nato_phonetic_alphabet.csv' )phonetic_dict = {key.letter:key.code for (row,key) in data.iterrows()}...
1 min read
0 views
0 comments
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...
1 min read
1 view
0 comments
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...
2 min read
0 views
0 comments
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...
2 min read
0 views
0 comments