Posts

Voice-To-Text Python Program

Image
  Voice-To-Text Python Program After posting my first documented Python program, I got to work on a more advanced project to challenge myself. This program is much more complex than my first publication but easy enough for casual/beginner programmers to grasp(with a bit of homework anyway).  I would like to update this program and build a more sophisticated version as I continue to progress in my education. Some sort of perpetual project, proving my Python proficiency(what an alliteration!), so expect to see this pop up several times on my feed over time. Enjoy! PROJECT DESCRIPTION(Voice-To-Text program): In this project, I developed a program that records a user’s voice, and scribes the collated audio that the user can read. PROCESS: STEP 1(Prebuild): ) In order to complete this project, one must first download and set up an IDE. I would recommend either: PyCharm or Visual Studio Code ***I used Visual Studio Code for this specific build as it seemed to be compatible with...

My First Python Project Documentation

Image
  My First Python Project Documentation As an aspiring mechatronics engineer familiarizing myself with the world of tech and programming at a young age, I am making use of every opportunity currently available to me, one of those being able to learn Python. In order to broaden my skillset, I’m learning Python, and part of that process includes consistent project building and documentation. This is my first ever documentation of a Python project that I’ve built. PROJECT DESCRIPTION(Guessing Game): In this python project, I designed a code that gives the user a number of cities from around the world to guess from, and 3 tries to guess the randomly selected city. PROCESS: STEP 1(Prebuild): ) In order to complete this project, one must first download and set up an IDE. I would recommend either: PyCharm or Visual Studio Code 2.) Next, sign up for GitHub . STEP 2(Project Build): 1.) Create a new python file in an IDE and name it. Ex: guessGame.py PyCharm Example VS Code Example 2.) ...