//////////////// Hi sir Solve please.

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

 

//////////////// Hi sir Solve please. 

 

Using a list comprehension, generate a list of the first 10 Triangle numbers. If you've never learned about Triangle numbers, this site has everything you need to know. As detailed on the website, the formula to calculate the nth term in the sequence is n*(n+1)/2.
Part Two - Sets
a. Create a set named classi and populate it with the students Li, Audry, Jia, Migel, Tanya.
b. Create a set named class2 and populate it with the students Sasha, Migel, Tanya, Hiroto, Audry.
c. Create a set named class3 and populate it with the students Migel, Zhang, Hiroto, Anita, Jia.
d. Using set operators or set methods, generate a set of students who are in all three classes. Print a sorted list of these students.
e. Using set operators or set methods, generate a set of all students. Print a sorted list of these students.
f. Using set operators or set methods, generate a set of students in class 1 but not class2 or class3. Print a sorted list of these students.
g. Using a set comprehension, generate a set of all students who are in class2 but not in class 1. Print a sorted list of these students.
Part Three - Tuple Basics
For Parts Three, Four and Five, you will be working with data about the movie Casablanca
a. Create a tuple that contains the elements Casablanca, 1942, romantic drama.
b. Unpack the tuple into variables title, year, genre.
c. Print the genre.
Part Four - Named Tuple
a. Define a named tuple called Movie that contains the fields title, year, genre.
b. Create a Movie tuple that contains the elements Casablanca, 1942, romantic drama.
c. Print the title.
Part Five - Named Tuple Containing a List
a. Define a named tuple called Moviestars that contains the fields title, year, genre, stars.
b. Create a Moviestars tuple called favoritemovie that contains the elements Casablanca, 1942, romantic drama, and a list containing elements Humphrey Bogart, Ingrid Bergman.
c. Append Claude Rains to the stars list. Hint: Use the syntax favoritemovie.stars.append
d. Print star Ingrid Bergman.
e. Print favoritemovie.
f. Note that, even though a tuple is immutable, we are able to change a list that is contained by a tuple.
Example output:
First 10 Triangle numbers:
[1.0, 3.0, 6.0, 10.0, 15.0, 21.0, 28.0, 36.0, 45.0, 55.0]
Students in all three classes: ['Migel"]
All students: ['Anita', 'Audry', 'Hiroto', 'Jia', 'Li', 'Migel', 'Sasha', 'Tanya", "Zhang"]
Students in classi but not class2 or class3: ["U"]
Students in class2 but not classi ['Hiroto", "Sasha']
The genre of my favorite movie is: romantic drama
My favorite movie is: Casablanca
My favorite star is: Ingrid Bergman
Moviestars (title="Casablanca', year-1942, genre-'romantic drama', stars-['Humphrey Bogart', 'Ingrid Bergman', 'Claude Rains'])
Transcribed Image Text:Using a list comprehension, generate a list of the first 10 Triangle numbers. If you've never learned about Triangle numbers, this site has everything you need to know. As detailed on the website, the formula to calculate the nth term in the sequence is n*(n+1)/2. Part Two - Sets a. Create a set named classi and populate it with the students Li, Audry, Jia, Migel, Tanya. b. Create a set named class2 and populate it with the students Sasha, Migel, Tanya, Hiroto, Audry. c. Create a set named class3 and populate it with the students Migel, Zhang, Hiroto, Anita, Jia. d. Using set operators or set methods, generate a set of students who are in all three classes. Print a sorted list of these students. e. Using set operators or set methods, generate a set of all students. Print a sorted list of these students. f. Using set operators or set methods, generate a set of students in class 1 but not class2 or class3. Print a sorted list of these students. g. Using a set comprehension, generate a set of all students who are in class2 but not in class 1. Print a sorted list of these students. Part Three - Tuple Basics For Parts Three, Four and Five, you will be working with data about the movie Casablanca a. Create a tuple that contains the elements Casablanca, 1942, romantic drama. b. Unpack the tuple into variables title, year, genre. c. Print the genre. Part Four - Named Tuple a. Define a named tuple called Movie that contains the fields title, year, genre. b. Create a Movie tuple that contains the elements Casablanca, 1942, romantic drama. c. Print the title. Part Five - Named Tuple Containing a List a. Define a named tuple called Moviestars that contains the fields title, year, genre, stars. b. Create a Moviestars tuple called favoritemovie that contains the elements Casablanca, 1942, romantic drama, and a list containing elements Humphrey Bogart, Ingrid Bergman. c. Append Claude Rains to the stars list. Hint: Use the syntax favoritemovie.stars.append d. Print star Ingrid Bergman. e. Print favoritemovie. f. Note that, even though a tuple is immutable, we are able to change a list that is contained by a tuple. Example output: First 10 Triangle numbers: [1.0, 3.0, 6.0, 10.0, 15.0, 21.0, 28.0, 36.0, 45.0, 55.0] Students in all three classes: ['Migel"] All students: ['Anita', 'Audry', 'Hiroto', 'Jia', 'Li', 'Migel', 'Sasha', 'Tanya", "Zhang"] Students in classi but not class2 or class3: ["U"] Students in class2 but not classi ['Hiroto", "Sasha'] The genre of my favorite movie is: romantic drama My favorite movie is: Casablanca My favorite star is: Ingrid Bergman Moviestars (title="Casablanca', year-1942, genre-'romantic drama', stars-['Humphrey Bogart', 'Ingrid Bergman', 'Claude Rains'])
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Binary numbers
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
  • SEE MORE QUESTIONS
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