# clickerq.py # Lillian Lee (LJL2) and Steve Marschner (SRM2) # Feb 19, 2014 # Which statement will cause the number of petals of the new flower to be printed out? # # (A) print fdemo.Flower.num_petals # (B) print fdemo.Flower.num_petals() # (C) print x.num_petals # (D) print x.num_petals() # (E) none work # How do we pluck a petal from our new flower? # # (A) fdemo.pluck(f) # (B) fdemo.Flower.pluck(f) # (C) x.pluck() # (D) x.pluck # (E) None of the above work