python The FlipList class defined below is intended to be identical to a list, except that the append method only adds new elements to the back of the list when the length of the list is odd. When the length is even, append should instead add the new element to the front of the list. class FlipList(list):

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter9: Advanced Array Concepts
Section: Chapter Questions
Problem 18RQ
icon
Related questions
Question

Please answer quick. In python

The FlipList class defined below is intended to be identical to a list, except that the append method only adds new elements to the back of the list when the length of the list is odd. When the length is even, append should instead add the new element to the front of the list.

class FlipList(list):

     def append(self, item):

           if len(self) % 2 == 0:

                self.insert(0, item)

          else:

                _________

Fill in the blank with a line of code such that FlipList works as described above.

Expert Solution
steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Lists
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT