Changes between Version 63 and Version 64 of NewbieMistakes


Ignore:
Timestamp:
Oct 18, 2017, 5:43:32 AM (7 years ago)
Author:
Mads Jensen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NewbieMistakes

    v63 v64  
    312312}}}
    313313
    314 The way I get the last member is:
     314The way I get the last member is either:
    315315
    316316{{{
    317317#!python
    318318>>> p[p.count()-1]
     319<Poll: What is your favourite colour?>
     320}}}
     321
     322or
     323
     324{{{
     325#!python
     326>>> p.last()
    319327<Poll: What is your favourite colour?>
    320328}}}
Back to Top