Changes between Version 63 and Version 64 of NewbieMistakes
- Timestamp:
- Oct 18, 2017, 5:43:32 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewbieMistakes
v63 v64 312 312 }}} 313 313 314 The way I get the last member is :314 The way I get the last member is either: 315 315 316 316 {{{ 317 317 #!python 318 318 >>> p[p.count()-1] 319 <Poll: What is your favourite colour?> 320 }}} 321 322 or 323 324 {{{ 325 #!python 326 >>> p.last() 319 327 <Poll: What is your favourite colour?> 320 328 }}}