using python programming language Create a program that reads a list of Integer numbers from a file named data.txt (crea
Posted: Tue Jul 12, 2022 8:12 am
using python programming languageCreate a program that reads a list of Integer numbers from afile named data.txt (create your own file with about 16numbers - no repetitions and one number per line)Store those numbers into an array a and sortit - a.sort()Use the linked list and node classes seen in class to store theordered elements of a into a LinkedList structure LAsk the user a Integer value xLook for the position to insert x in LIf the value x is already in L, remove itIf it is not, insert x in the appropriated position so Lremains sorted