miroir de
https://github.com/PAPAMICA/Wiki-Tech.io.git
synchronisé 2024-11-27 11:41:14 +01:00
docs: update Scripting/Python/Bases
Cette révision appartient à :
Parent
332603c98e
révision
653ffb217e
1 fichiers modifiés avec 5 ajouts et 2 suppressions
|
@ -2,13 +2,13 @@
|
|||
title: Python - Présentation et Installation
|
||||
description: Découvrir Python et l’installer !
|
||||
published: true
|
||||
date: 2021-05-24T16:10:06.281Z
|
||||
date: 2021-05-24T16:12:43.470Z
|
||||
tags:
|
||||
editor: ckeditor
|
||||
dateCreated: 2021-05-24T16:10:06.281Z
|
||||
-->
|
||||
|
||||
<figure class="image image_resized" style="width:900.359px;"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Python_logo_and_wordmark.svg/1200px-Python_logo_and_wordmark.svg.png" alt="Fichier:Python logo and wordmark.svg — Wikipédia"></figure>
|
||||
<figure class="image image_resized" style="width:57.85%;"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Python_logo_and_wordmark.svg/1200px-Python_logo_and_wordmark.svg.png" alt="Fichier:Python logo and wordmark.svg — Wikipédia"></figure>
|
||||
<h1>Algébrie</h1>
|
||||
<figure class="table">
|
||||
<table style="background-color:rgb(255, 255, 255);">
|
||||
|
@ -57,6 +57,7 @@ dateCreated: 2021-05-24T16:10:06.281Z
|
|||
<li>Déclaration d'une variable :</li>
|
||||
</ul>
|
||||
<pre><code class="language-python">nom_variable = valeur</code></pre>
|
||||
<p> </p>
|
||||
<blockquote>
|
||||
<ol>
|
||||
<li>Le nom de la variable ne peut être composé que de lettres, majuscules ou minuscules, de chiffres et du symbole souligné « _ » (appelé underscore en anglais).</li>
|
||||
|
@ -153,6 +154,7 @@ maVariable += 1</code></pre>
|
|||
<pre><code class="language-python">a=3
|
||||
type(a)
|
||||
# retourne <class 'int'></code></pre>
|
||||
<p> </p>
|
||||
<ul>
|
||||
<li>La fonction <strong>print</strong><br>Cette fonction ne sert uniquement qu'à afficher du texte ou une variable. Contrairement à la console qui est capable d'afficher une variable sans avoir à appeler cette fonction, sur un <strong>IDE</strong> vous serez obligé de vous en servir.</li>
|
||||
</ul>
|
||||
|
@ -161,6 +163,7 @@ type(a)
|
|||
>>> a = a + 3
|
||||
>>> b = a - 2
|
||||
>>> print("a =", a, "et b =", b)</code></pre>
|
||||
<p> </p>
|
||||
<ul>
|
||||
<li>La fonction <strong>input</strong><br>Cette fonction permet de récupérer la saisie d'un utilisateur.</li>
|
||||
</ul>
|
||||
|
|
Chargement…
Référencer dans un nouveau ticket