Hi there. this is my first time using this website and I need help with a python assignment that is due in 8 hours. Its a short assignment but I am not very good with programming and would appreciate any and all help Create a Python Class for a data structureOrderedList.The class stores a sequence of contents of same type (string or number), the contents are kept in ascending order at all times. Repetition of values is allowed. The class contains the following elements: (a) (attribute) a list of contents, that will be kept ordered at all times. (b) (attribute) and identifier of the list, type string. (c) the constructor (initmethod), that takes as arguments an identifier for the list (string)and an initial content list (a list with initial contents, which may be empty or not ordered) (d) a method to return the position of the first occurrence a certain element in the list (e) a method to include element(s) in the list. The argument is a list that does not need to beordered. (f) a method to remove a range of elements from the list, given the start and end of the range.It removes all elements from the list that are betweenstartandend. Start and end ofrange are removed also. For instance, if for the numerical list above we ask to eliminate 1 to 5, the remaining contents will be 9,12,17,18,32,32. In the list of strings, if we ask toeliminate ’Carlow’ to ’Cork’ , the resulting list will have only ’Donegal’ . (g) a method to remove the first occurrence of an element in the list. (h) a method that searches for an element in the list, and returns the initial position and endposition of that element. For instance, for the numerical list above, if we ask the position ofthe element 5, it will return 2,3; if we ask for the position of the element 17, it will return6,6.(i) anstrmethod that includes the current contents of the OrderedList.
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme