At the top of each of your scripts, put the following multi-line comment with your information:
'''
Your name as registered, with optional nickname in parentheses
CIS 41A Fall 2021
Unit D, Problem D
'''
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.
class1
and populate it with the students Li, Audry, Jia, Migel, Tanya
. class2
and populate it with the students Sasha, Migel, Tanya, Hiroto, Audry
. class3
and populate it with the students Migel, Zhang, Hiroto, Anita, Jia
. For Parts Three, Four and Five, you will be working with data about the movie Casablanca.
Casablanca, 1942, romantic drama
. title, year, genre
. Movie
that contains the fields title, year, genre
. Casablanca, 1942, romantic drama
. Moviestars
that contains the fields title, year, genre, stars
. favoritemovie
that contains the elements Casablanca, 1942,
romantic drama
, and a list containing elements Humphrey Bogart, Ingrid Bergman
.
Claude Rains
to the stars
list. Hint: Use the syntax favoritemovie.stars.append
Ingrid Bergman
. favoritemovie
. 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'])
Add the following at the end of the script to show your results:
'''
Execution results:
paste execution results here
'''
Submit your finished py script in Canvas, Problem D.