Below are some beginner projects I created to test my knowledge in using python.
Weather API
Github: https://github.com/presicion25/weather-api
A Small weather api I created in python using the api from openweather.org
It outputs the high and low temperature from my city when run. To output your own city, just input the latitude, longitude and city name in the print function, as well as using your own free api key from openweather.org.
Fortune Cookie
Github: https://github.com/presicion25/python-projects/blob/main/FortuneCookie.py
Simple Fortune Cookie program I created using python to test my knowledge. It will generate up to 20 different fortunes and up to 500 different lucky numbers. Just run it over and over to see different fortunes
Password Generator
Github: https://github.com/presicion25/python-projects/blob/main/passwordgenerator.py
Simple password generator utility I modified using python to test my skills. It can be used to generate passwords up to 32 characters long using numbers, letters and symbols which can be copied to clipboard. It could be useful when signing up to online accounts or changing a password.
Guessing Game
Github: https://github.com/presicion25/python-projects/blob/main/guessinggame.py
Simple and funny guessing game I created using python. It asks to guess a number between 1 and 50. The outcome is based on how many tries it takes for you to guess the random number it is thinking of.
Mad Lib
Github: https://github.com/presicion25/python-projects/blob/main/madlib.py
A simple and funny mad lib I created using python. It asks for some simple location details about yourself and after you enter them it outputs a funny message at the end.