2 Matching Annotations
  1. Oct 2018
    1. What does the count() function do? How many arguments does it have?

      If your intent is to count the total number of items in the list use: len(listname

  2. Sep 2018
    1. for x in range(): print(x)

      This is the only way I could get this to work but I don't think that its the way the activity wants us to do it

      for x in range(-5,0): print(-x)