Write Python code to perform the following tasks: Access the first element of the list my_list and print it. Access the third element of the list my_list and print it. Access the last element of the list my_list without directly using the index and print it. Access the second last element of the list my_list without directly using the index and print it.