
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
PLEASE COMMENT CODE
In a python program, create a new file and call it “ tracking”. Write to it four lines each contains information about an order like this:
1-00654-021 Dell charger Toronto-WEST 99-49-ZAD01
1-76540-022 ASUS battery Milton-EAST 34-56-CBH56
1-09239-026 HP HD Scarborough-NORTH 12-98-AZC45
1-12349-029 Mac FD North York-LAWRENCE 34-49-ZWL01
Add the file two more lines:
1-34567-055 Lenovo SSD Milton-ON 34-09-MT04
1-90432-091 Lenovo battery Oakville-ON 78-KL98
Define a function that searches for a brand (e.g. Dell, ASUS, etc.). Test the function in your program.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 4 steps with 2 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- In c language,using pointer and for loop Code level: Beginnersarrow_forwardWrite this code in C# : Scenario: A dog shelter would like a simple system to keep track of all the dogs that pass through their facility. You are required to make a command line-based dog shelter management application. Your application must allow a user to add, edit, search and view Contacts. The program must have a menu consisting of the following six (6) options: Add dog View all dogs View all available dogs View specific dog Update dog home status Exit Brief descriptions of each option in the menu Menu Item Description Add Dog 1) Asks the user for all the state value information for a dog. 2) Checks if there is space in the array to hold the new dog. 3) Check that the dogId is not already used in the system. 4) Creates a new Dog object and adds it to the array if there is space. If the array is full, print “Sorry… the Shelter is Full!”. Note: All new dogs have no home as yet (foundHome = false). View all dogs This menu option shows all dogs in the…arrow_forwardPlease written by computer source Instructions Deliverables: For this assignment you will submit two python files to the drop box. Name the main file: lastname_firstname_assign2.py and name the module file: conversion.py. Example: turner_randy_assign2.py Create a program that converts feet to meters and vice versa. Specifications The formula for converting feet to meters is: feet = meters / 0.3048 The formula for converting meters to feet is: meters = feet * 0.3048 Store the code that performs the actual conversions in separate functions within a separate code module named "conversions.py". These two functions will take a single parameter and return the resulting conversion value. Close the file Start a new .py file and use an "import" statement to import your custom module into this new file Write a separate function to display the program banner/title Write a separate function to display the menu as shown below in the sample output Write the rest of the code to (1) take the user…arrow_forward
- java program that Creates an INDEXCEPTION value of the unique vowels and unique consonants that the name that was given to you can create.Input: A string of the name that was GIVEN TO YOU. CASE SENSITIVE.Process1: For every unique vowel of a name, you need to get the first index of that vowel from the original string. 2: For each vowel index you get from step 1, you will get the unique consonant from that position. if the index is out of scope of the consonant array, ignore that vowel index. 3: For each unique consonant that you get from step 2, you need to get the first index of that consonant from the original string. 4: Get the value of indexception by adding all index you get from step 3.OutputTO BE DISPLAYED- 2 lists that consists of unique vowels and unique consonants- The vowel, the vowel index, the consonant, the consonant indexFINAL OUTPUT- The total indexception value of the name that was given to you.arrow_forwardPYTHON CODINGarrow_forwardUsing c++ computer languagearrow_forward
- in c# i need to Write the program named DirectoryInformation that allows a user to continually enter directory names until the user types end. If the directory name exists, display a list of the files in it; otherwise, display the following message, Directory foo does not exist, to indicate the directory does not exist (foo would be the name of the directory to be checked) . Create as many test directories and files as necessary to test your program. An example of the program is shown below: Enter a directory >> lorem lorem contains the following files lorem/ipsum.txt Enter another directory or type end to quit >> foo Directory foo does not existarrow_forwardIntro to Python Programming: ATM Application When you use an automated teller machine (ATM) with your bank card, you needto use a personal identification number (PIN) to access your account. If a user failsmore than three times when entering the PIN, the machine will block the card.Create the ATM Application.The application asks the user for the PIN no more than three times, and does thefollowing:• If the user enters the right PIN, the application should ask the user to choose anaccount (checking or savings), and display its balance.• If the user enters a wrong PIN and, if the application has asked for the PIN lessthan three times, it should ask for it again.• If the user enters a wrong PIN three times, the application should print amessage saying “Your bank card is blocked”.Assume that the user’s checking account balance is $1450.56 and his/her savingsaccount balance is $10. Also assume the user’s PIN is “9554”. SAMPLE RUNEnter your PIN: 1353Enter your PIN: 9555Enter your PIN:…arrow_forwardPython Programming only plz Create a program to perform the following actions: Create a module that will determine if a string is an email address in this pattern XXXX@XXXX.XXX. you cannot use the regex library. Create a module that determines if a string is a phone number in this pattern XXX-XXX-XXXX. you cannot use the regex library. Then prompt the user: Enter an email address, check to see if the e-mail address is in the correct format. If not ask the user to enter an e-mail address in the correct format. If correct print e-mail accepted. Enter a phone number, check to see if the phone number is in the correct format. If not ask the user to enter a phone number in the correct format. If correct print phone accepted. Print the following: The phone number entered The email address entered Describe the numbers and text you print. Do not just print numbers or strings to the screen explain what each number represents.arrow_forward
- Need help with coding this in python using tkinter Write a GUI program to let the user enter a file name from an entry field and then count the number of occurrences of each letter in that file. Clicking theShow Result button displays the result in a text widget. You need to displaya message in a message box if the file does not exist. https://www.bartleby.com/questions-and-answers/need-help-with-coding-this-in-python-using-tkinter-write-a-gui-program-to-let-the-user-enter-a-file-/153862b8-6d38-47a4-bd38-9c66882021d1arrow_forwardPython Please! Create a program that will allow a user to do either of the following things: Get input from the user to write the following information to a file: Student name Assignment average grade Mid-term test grade Fi-nal project grade Fi-nal test grade Allow the user to search the file by student name and output a weighted average (15%, 25%, 25%, and 35%, respectively) based on the grades for that student in the file. The user should be able to choose either of the two options until they want to stop.arrow_forwardIn C++arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education