Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. geoff@tux ~ $ python
  2. Python 2.6.5 (release26-maint, Oct 7 2010, 09:29:21)
  3. [GCC 4.4.3] on linux2
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> import array
  6. >>> mytuple = [1,2,3,4]
  7. >>> len(mytuple)
  8. 4
  9. >>> mytuple.append('five')
  10. >>> len(mytuple)
  11. 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement