Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
Den här utvecklingskatalogen är arkiverad. Du kan se filer och klona katalogen, men inte öppna ärenden eller genomföra push- eller pull-förfrågningar.

02-interpréteur.md 972 B

1234567891011121314151617181920212223242526272829303132333435
  1. +++
  2. title = "L'interpréteur interactif"
  3. weight = 4
  4. +++
  5. # L'interpréteur interactif
  6. ## Installation
  7. Il se lance depuis l'invite de commande du système d'exploitation:
  8. ```
  9. $ python3
  10. Python 3.7.1 (default, Oct 22 2018, 10:41:28)
  11. [GCC 8.2.1 20180831] on linux
  12. Type "help", "credits" or "license" for more information.
  13. >>>
  14. ```
  15. ## Deux invites de commandes
  16. Notez les trois chevrons: `>>>`. Cela vous permet de différencier l'invite
  17. de commandes du système d'exploitation de celle de Python.
  18. * Système d'exploitation -> Python: taper `python3` (sans arguments)
  19. * Python -> Système d'exploitation: taper `quit()`
  20. ## Note
  21. À partir de maintenant, recopiez les entrées sur les slides dans votre propre
  22. interpréteur.
  23. Vous devez taper la même chose après l'invite de commande ('>>>') et vous devez voir les mêmes réponses.
  24. Si ce n'est pas le cas, relisez attentitivement ce que vous avez tapé, sinon [contactez-moi](https://dmerej.info/blog/fr/pages/about/).