Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In Python Part One - List Comprehension Using a list comprehension, generate a list of the first 10 Triangle numbers. If you've never learned about

In Python

Part One - List Comprehension

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

Create a set named class1 and populate it with the students Li, Audry, Jia, Migel, Tanya.

Create a set named class2 and populate it with the students Sasha, Migel, Tanya, Hiroto, Audry.

Create a set named class3 and populate it with the students Migel, Zhang, Hiroto, Anita, Jia.

Using set operators or set methods, generate a set of students who are in all three classes. Print a sorted list of these students.

Using set operators or set methods, generate a set of all students. Print a sorted list of these students.

Using set operators or set methods, generate a set of students in class1 but not class2 or class3. Print a sorted list of these students.

Using a set comprehension, generate a set of all students who are in class2 but not in class1. 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.

Create a tuple that contains the elements Casablanca, 1942, romantic drama.

Unpack the tuple into variables title, year, genre.

Print the genre.

Part Four Named Tuple

Define a named tuple called Movie that contains the fields title, year, genre.

Create a Movie tuple that contains the elements Casablanca, 1942, romantic drama.

Print the title.

Part Five Named Tuple Containing a List

Define a named tuple called Moviestars that contains the fields title, year, genre, stars.

Create a Moviestars tuple called favoritemovie that contains the elements Casablanca, 1942, romantic drama, and a list containing elements Humphrey Bogart, Ingrid Bergman.

Append Claude Rains to the stars list. Hint: Use the syntax favoritemovie.stars.append

Print star Ingrid Bergman.

Print favoritemovie.

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 class1 but not class2 or class3: ['Li'] Students in class2 but not class1 ['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'])

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

XML Data Management Native XML And XML Enabled Database Systems

Authors: Akmal Chaudhri, Awais Rashid, Roberto Zicari, John Fuller

1st Edition

0201844524, 978-0201844528

More Books

Students also viewed these Databases questions

Question

=+ What skills and competencies will enable someone

Answered: 1 week ago

Question

=+to live and work wherever he or she wants?

Answered: 1 week ago

Question

=+How will this affect the recruiting process?

Answered: 1 week ago