
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
thumb_up100%

Transcribed Image Text:WRITE A PYTHON PROGRAM TO TAKE A LIST OF INTEGERS, PRINTA LIST WHERE
EACH INTEGER IS ADDED TO I AND THE RESULT IS MULTIPLIED BY 10.
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 3 steps with 1 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
- Write a program that reads a list of integers into a list as long as the integers are greater than zero, then outputs the list values and the smallest and largest integers in the list using min and max built-in functions. Ex: If the input is: 1053212-6 the output is: [10, 5, 3, 21, 2] 2 and 21arrow_forwardI could use some help with this problemarrow_forwardusing python Adjust values in a list by normalizing When analyzing data sets, such as data for human heights or for human weights, a common step is to adjust the data. This can be done by normalizing to values between 0 and 1, or throwing away outliers. Write a program that first gets a list of integers from input. The input begins with an integer indicating the number of integers that follow. Then, adjust each integer in the list by subtracting the smallest value from all the integers. Ex: If the input is: 5 30 50 10 70 65 the output is: 20 40 0 60 55 The 5 indicates that there are five integers in the list, namely 30, 50, 10, 70, and 65. The smallest value in the list is 10, so the program subtracts 10 from all integers in the list.arrow_forward
- Please use python idle program and take a screenshot of the executable codearrow_forwardWrite a python program follows. In the main() function: Create an empty list named nums. Use a for loop to add 15 random integers, inclusive of 41-83, to the list nums, . It is required to use random.randint for generation of the numbers. Use a for loop to print the values on the same line, no brackets are expected. Use a for loop to sum the list, then print the sum value. Sort the list. print the sorted values all on the same line using the unpack feature of lists/tuples, no brackets are expected. (Hint use the asterisk in front of the list Example #2) make a new list named start by slicing out the first 8 elements of the sorted nums list. print the start list in a single print without using unpack feature of lists/tuples, brackets are expected. make a new list named finish by slicing out the last 4 elements of the sorted nums list. print the finish list in a single print without using unpack feature of lists/tuples, brackets are expected. execute the even_odd() function…arrow_forwardpython code Write a program that reads a list of integers into a list as long as the integers are greater than zero, then outputs the smallest and largest integers in the list.arrow_forward
- Write in Python: (1) Prompt the user to enter four numbers, each corresponding to a person's weight in pounds. Store all weights in a list. Output the list. Ex: Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 176.0 Enter weight 4: 166.3 Weights: [236.0, 89.5, 176.0, 166.3] (2) Output the average of the list's elements with two digits after the decimal point. Hint: Use a conversion specifier to output with a certain number of digits after the decimal point. (3) Output the max list element with two digits after the decimal point. Ex: Enter weight 1: 236.0 Enter weight 2: 89.5 Enter weight 3: 176.0 Enter weight 4: 166.3 Weights: [236.0, 89.5, 176.0, 166.3] Average weight: 166.95 Max weight: 236.00 (4) Prompt the user for a number between 1 and 4. Output the weight at the user specified location and the corresponding value in kilograms. 1 kilogram is equal to 2.2 pounds. Ex: Enter a list location (1 - 4): 3 Weight in pounds: 176.00 Weight in kilograms: 80.00 (5) Sort the…arrow_forwardHow do I do this in python? Create a program that prints a list of words in random order. The program should print all the words and not repeat any.arrow_forwardWrite a program that asks the user to input 2 lists of numbers, 5 numbers per list. Your program should identify the common numbers in the lists or the numbers that are present in both lists. See sample lists and output below. Input two sets of list with 5 integers each 20·3·59·1·3 1·20·1·4·3 Output list of common numbers present in both list 20·3·1arrow_forward
- Write a Python program that removes the duplicates from a list. Use inputs a list of integers from the user, and removes the duplicate list elements, plus outputs their min and max values. (the program should have more than 1 function and leave comments as explanations of what does the code does). Ex (in pictures below):arrow_forwardqweerarrow_forwardWrite a program that receives a list of integers and prints out that list after removing prime numbers from the list. Test your program with multiple lists of numbers and make sure it works properly. For instance, if the input is [1, 2, 3, 4, 5, 6, 7], it should print [1, 4, 6]. IN PYTHONarrow_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