Excercise # 1 Write a program that generates a sequence of 20 random values between 0 and 99 in a list, prints the sequence, sorts it, and prints the sorted sequence. Use the list sort method. Make sure that you use functions in your solution, including a main function. • Following is a sample run original sequence: [28, 46, 31, 75, 20, 7, 9, 89, 9, 88, б, 80, 37, 54, 11, 58, 12, 72, 55, 96] sorted sequence: [6, 7, 9, 9, 11, 12, 20, 28, 31, 37, 46, 54, 55, 58, 72, 75, 80, 88, 89, 96]

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
Python
Excercises
Slide Type Fragment v
• Excercise # 1 Write a program that generates a sequence of 20 random values between 0 and 99 in a list, prints the sequence, sorts it, and prints the
sorted sequence, Use the list sort method. Make sure that you use functions in your solution, including a main function.
• Following is a sample run
original sequence:
[28, 46, 31, 75, 20, 7, 9, 89, 9, 88, 6, 80, 37, 54, 11, 58, 12, 72, 55, 96]
sorted sequence:
[6, 7, 9, 9, 11, 12, 20, 28, 31, 37, 46, 54, 55, 58, 72, 75, 80, 88, 89, 96]
Slide Type Fragment v
• Excercise #1 Write a program that generates a sequence of 20 random values between 0 and 99 in a list, prints the sequence, sorts it, and prints the
sorted sequence. Use the list sort method. Make sure that you use functions in your solution, including a main function.
• Define a function def generate_random (numofElts) that receives the number of elements to generate randomly. The function returns a list of
random numbers (0 - 99) of the specified size (not only 20).
• Following is a sample run
original sequence:
[28, 46, 31, 75, 20, 7, 9, 89, 9, 88, 6, 80, 37, 54, 11, 58, 12, 72, 55, 96]
sorted sequence:
[6, 7, 9, 9, 11, 12, 2е, 28, 31, 37, 46, 54, 55, 58, 72, 75, 80, 88, 89, 96]
In [3]:
Slide Type
TE
PrtSc
Sys Rq
Insert
ScrLk
F5
F6
F7
F8
F9
F10
F11
F12
Delete
&
Backsp
6
7
V
8
T
Y
40
G YHi
J
K
L /
10
15
Transcribed Image Text:Excercises Slide Type Fragment v • Excercise # 1 Write a program that generates a sequence of 20 random values between 0 and 99 in a list, prints the sequence, sorts it, and prints the sorted sequence, Use the list sort method. Make sure that you use functions in your solution, including a main function. • Following is a sample run original sequence: [28, 46, 31, 75, 20, 7, 9, 89, 9, 88, 6, 80, 37, 54, 11, 58, 12, 72, 55, 96] sorted sequence: [6, 7, 9, 9, 11, 12, 20, 28, 31, 37, 46, 54, 55, 58, 72, 75, 80, 88, 89, 96] Slide Type Fragment v • Excercise #1 Write a program that generates a sequence of 20 random values between 0 and 99 in a list, prints the sequence, sorts it, and prints the sorted sequence. Use the list sort method. Make sure that you use functions in your solution, including a main function. • Define a function def generate_random (numofElts) that receives the number of elements to generate randomly. The function returns a list of random numbers (0 - 99) of the specified size (not only 20). • Following is a sample run original sequence: [28, 46, 31, 75, 20, 7, 9, 89, 9, 88, 6, 80, 37, 54, 11, 58, 12, 72, 55, 96] sorted sequence: [6, 7, 9, 9, 11, 12, 2е, 28, 31, 37, 46, 54, 55, 58, 72, 75, 80, 88, 89, 96] In [3]: Slide Type TE PrtSc Sys Rq Insert ScrLk F5 F6 F7 F8 F9 F10 F11 F12 Delete & Backsp 6 7 V 8 T Y 40 G YHi J K L / 10 15
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Introduction to computer system
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.
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education