Python 3.4.1.13 LAB: The basics of lists - the Beatles
The basics of lists - the Beatles The Basis of Lists in Python If you're taking PCAP - Programming Essentials In Python , you may have encountered this question 3.4.1.13 LAB: The basics of lists - the Beatles. Objectives Familiarize the student with: creating and modifying simple lists; using methods to modify lists. Scenario The Beatles were one of the most popular music group of the 1960s, and the best-selling band in history. Some people consider them to be the most influential act of the rock era. Indeed, they were included in Time magazine's compilation of the 20th Century's 100 most influential people. The band underwent many line-up changes, culminating in 1962 with the line-up of John Lennon, Paul McCartney, George Harrison, and Richard Starkey (better known as Ringo Starr). Write a program that reflects these changes and lets you practice with the concept of lists. Your task is to: step 1 : create an empty list named beatles ; step 2 : use the append() method to...