Advertisement
scarbo

pythoneon-exo-listes

Apr 28th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | None | 0 0
  1. idesbald@accelibreinfo:~$ python3
  2. Python 3.4.2 (default, Oct  8 2014, 10:45:20)
  3. [GCC 4.9.1] on linux
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> liste = []
  6. >>> liste = [0, 1, 2, 3, 4]
  7. >>> liste = [0, 1, 'a', 'b']
  8. >>> liste = [0, 1, 2, 2, 3, 4, 5, 5]
  9. >>> liste = ['ploc', 'vi', 'crac']
  10. >>> liste = ['malbrouc', 'streck', 'vijf']
  11. >>> liste = ['malbrouc', 'example', 'vijf']
  12. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement