Assignment#9: Advanced Python Topics

The code academy lesson “Advanced Topics in Python” deals with combining your prior knowledge of previous lessons to complete the coding the lesson assigns.

The code below prints out the elements in a list called “movies” by using the code on the last line.

adv1

The second coding below is used to display numbers between 1 and 15 which are  evenly divisible by 3 or 5.

adv2

The next image, the variable “message,” prints out the assignment to “garbled” backwards every other letter.

adv3

The delete the “X”‘s from the variable “garbled,” the variable “message” was created and it was set to the  correct calling of  “filter()” to do so.

adv4