User Tools

Site Tools


fr:frombinary

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

fr:frombinary [2016/01/01 22:44]
fr:frombinary [2020/02/28 10:46] (current)
Line 1: Line 1:
 +===== FromBinary =====
  
 +==== Format ====
 +
 +**frombinary** ( //string// )
 +
 +
 +==== Description ====
 +Cette fonction retourne l'entier correspondant à la valeur binaire (base 2) passée en paramètre comme chaîne de caractère //string//.
 +
 +==== Exemple ====
 +
 +<code>print frombinary("11")
 +print frombinary("1001101")
 +</code>
 +Affichera\\
 +<code>3
 +77
 +</code>
 +
 +==== Disponible depuis la version ==== 
 +0.9.9.45
 +
 +==== Voir Aussi ====
 +{{page>fr:start#Conversion des bases de numération&noheader}}