Python 3.4.2 (v3.4.2:ab2c023a9432, Oct 6 2014, 22:15:05) [MSC v.1600 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> beatles = ['John', 'Paul', 'George', 'Ringo'] >>> print(beatles) ['John', 'Paul', 'George', 'Ringo'] >>> print(beatles[2]) George >>> beatles.append('Stu') >>> beatles ['John', 'Paul', 'George', 'Ringo', 'Stu'] >>> beatles[1:3] ['Paul', 'George'] >>> beatles[0:2] + beatles[3:5] ['John', 'Paul', 'Ringo', 'Stu'] >>> beatles.reverse() >>> beatles ['Stu', 'Ringo', 'George', 'Paul', 'John'] >>> beatles[-1] 'John' >>> beatles[0:5:2] ['Stu', 'George', 'John'] >>> for musician in beatles: print (musician, " was a Beatle") Stu was a Beatle Ringo was a Beatle George was a Beatle Paul was a Beatle John was a Beatle >>> beatles[1][1] 'i' >>> beatles[3] = 'Pete' >>> beatles ['Stu', 'Ringo', 'George', 'Pete', 'John'] >>> beatles.remove('Pete') >>> beatles ['Stu', 'Ringo', 'George', 'John'] >>>