python, php, ruby Comment convertir un décimal en n

python

python


data = 255
#Nombre binaire
b = bin(data) # '0b11111111'
b = format(data, 'b') # '11111111'
#8 base
o = oct(data) # '0377'
o = format(data, 'o') # '377'
#Hexadécimal
x = hex(data) # '0xff'
x = format(data, 'x') # 'ff'
#Convertissez 255 en hexadécimal et écrivez le dernier chiffre en décimal
int_x = int(format(data, 'x')[-1], 16) # 15

PHP

PHP


$data = 255;
//Nombre binaire
$b = decbin($data); // '11111111'
//8 base
$o = decoct($data); // '377'
//Hexadécimal
$x = dechex($data); // 'ff'
//Convertissez 255 en hexadécimal et écrivez le dernier chiffre en décimal
$int_x = hexdec(substr(dechex($data), -1)); // 15

Ruby

Ruby


data = 255
#Nombre binaire
b = data.to_s(2) # '11111111'
#8 base
o = data.to_s(8) # '377'
#Hexadécimal
x = data.to_s(16) # 'ff'
#Convertissez 255 en hexadécimal et écrivez le dernier chiffre en décimal
int_x = data.to_s(16)[-1].to_i(16) # 15

Recommended Posts

python, php, ruby Comment convertir un décimal en n
Convertir décimal en n-aire [python]
[Python] Convertit les nombres décimaux en nombres binaires, octaux et hexadécimaux
Comment convertir des nombres à virgule flottante en nombres binaires en Python
Comment gérer JSON en Ruby, Python, JavaScript, PHP
[Python] Convertit les nombres naturels en nombres ordinaux
[Python] Comment convertir un fichier db en csv
[Python] Comment afficher des nombres aléatoires (module aléatoire)
[Python] Comment convertir une liste bidimensionnelle en liste unidimensionnelle
Comment convertir Python en fichier exe
Comment écrire Ruby to_s en Python
J'ai essayé de créer un programme qui convertit les nombres hexadécimaux en nombres décimaux avec python
Comment installer Python
Comment installer python
Comment convertir le type Python # pour les super débutants de Python: str
Convertir le masque de réseau de notation CIDR en notation décimale à points en Python
Comment convertir un fichier JSON en fichier CSV avec Python Pandas
Comment ajouter des numéros de page à un fichier PDF (en Python)
Gérer les nombres premiers avec Python / Ruby / PHP / Golang (Go)
[2020.8 dernière] Comment installer Python
[python] Convertir la date en chaîne
Comment installer Python [Windows]
Convertir numpy int64 en python int
python3: Comment utiliser la bouteille (2)
Java VS PHP VS Python VS Ruby
Flirter de PHP à Python
[Python] Comment utiliser la liste 1
Comment mettre à jour Tkinter de Python vers la version 8.6
Comment utiliser Python Argparse
À propos de Perl, Python, PHP, Ruby
Convertir le projet Scratch en Python
[Python] Convertir Shift_JIS en UTF-8
Python: comment utiliser pydub
[Python] Comment utiliser checkio
Convertir l'adresse IP en décimal
Comment exécuter Notepad ++ Python
Comment changer la version de Python
Comment développer en Python
[python] Comment juger scalaire
[Python] Comment utiliser input ()
Comment utiliser Python lambda
[Python] Comment utiliser virtualenv
python3: Comment utiliser la bouteille (3)
python3: Comment utiliser la bouteille
Convertir le code python 3.x en python 2.x
Comment utiliser les octets Python
Ne perdez pas contre Ruby! Comment exécuter Python (Django) sur Heroku
Comment convertir Youtube en mp3 et le télécharger en toute sécurité [Python]
Comment convertir le type Python # pour les super débutants de Python: int, float
Performances Ruby vs Python Comment choisir la bonne technologie?
Comment appeler Python ou Julia à partir de Ruby (implémentation expérimentale)
Comment installer Python à l'aide d'Anaconda
[Python] Comment FFT des données mp3
[Python] Comment faire PCA avec Python
Python: comment utiliser async avec
Comment écrire un exemple d'implémentation E11 Ruby et Python en temps réel hors ligne
Convertir Markdown en PDF en Python
[Python] Comment dériver nCk (ABC156-D)
[Python] Comment utiliser la série Pandas