Answer:
myList.append(777)
Step-by-step explanation:
Hi,
To add the element 777 to the list myList, we can use the append() function in Python that takes the element to be added as an argument and is applied to a list.
The line of code is: myList.append(777).
Good luck!