1
0
Bifurcation 0
miroir de https://github.com/PAPAMICA/Wiki-Tech.io.git synchronisé 2024-07-07 02:20:13 +02:00

docs: update Python/Base

Cette révision appartient à :
Mickael Asseline 2021-04-28 18:48:49 +00:00 révisé par Mickael Asseline
Parent 4bee355b0c
révision 0f3df87b4e

Voir le fichier

@ -2,7 +2,7 @@
title: Les bases du langage
description:
published: true
date: 2021-04-28T18:47:41.737Z
date: 2021-04-28T18:48:47.568Z
tags:
editor: ckeditor
dateCreated: 2021-04-28T18:46:47.848Z
@ -11,7 +11,7 @@ dateCreated: 2021-04-28T18:46:47.848Z
<h1>Les bases du langage</h1>
<h2>Algébrie</h2>
<figure class="table">
<table style="background-color:hsl(0, 0%, 100%);">
<table>
<thead>
<tr>
<th style="border-bottom:2px solid rgb(158, 158, 158);padding:0.75rem;">Opérateur</th>
@ -20,27 +20,27 @@ dateCreated: 2021-04-28T18:46:47.848Z
</thead>
<tbody>
<tr>
<td style="background-color:hsl(0, 0%, 100%);border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;"><strong>+</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;text-align:center;"><strong>+</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;">Additionne deux nombres</td>
</tr>
<tr>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;"><strong>-</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;text-align:center;"><strong>-</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;">Soustrait deux nombres</td>
</tr>
<tr>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;"><strong>*</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;text-align:center;"><strong>*</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;">Multiplie deux nombres</td>
</tr>
<tr>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;"><strong>/</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;text-align:center;"><strong>/</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;">Divise deux nombres</td>
</tr>
<tr>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;"><strong>//</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;text-align:center;"><strong>//</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;">Retourne le nombre entier d'une division</td>
</tr>
<tr>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;"><strong>%</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;text-align:center;"><strong>%</strong></td>
<td style="border-bottom:1px solid rgb(238, 238, 238);padding:0.75rem;">Retourne le reste d'une division</td>
</tr>
</tbody>