Question
using python 3: actress = ( (Julia, Roberts), (8, October, 1967), [ (Duplicity, 2009), (Notting Hill, 1999), (Pretty Woman, 1990), (Erin Brockovich, 2000), (Eat Pray
using python 3:
actress = ( ("Julia", "Roberts"), (8, "October", 1967), [ ("Duplicity", 2009), ("Notting Hill", 1999), ("Pretty Woman", 1990), ("Erin Brockovich", 2000), ("Eat Pray Love", 2010), ("Mona Lisa Smile", 2003) ], ("Atlanta", "Georgia") )
print(type(actress[1])) print(actress[1]) for movies in actress: this is line 12 print(actress[2:])
On new line (the body of the loop), display only the title of the movie. Run.
On line 12, append the movie (Oceans Twelve, 2004) to the list. Run and notice that, even though the tuple is immutable, we can change its list which is mutable.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started