During my quest to obtain a Bachelor of Information Technology from Ashford University, my fourth class was CPT 200: Fundamentals of Programming Languages. For that class, the programming language that is taught is Python 3. On the first week of class, we were asked to create code that would ask a user to input several pieces of information about any specific employee. We were to use the variables: employeeName, employeeSSN, employeePhone, employeeEmail, and employeeSalary. After the data was inputted, it needed to be printed on the screen. Below was what I turned in for Functionality 1: During the second week of class, we were to read two chapters: Chapter 3: Types and Chapter 4: Branching. These chapters introduced us to the different types of variables that can be used within Python as well as how to use branching in your scripts. For the second functionality, we were instructed to adjust ou...