22 lines
391 B
Python
22 lines
391 B
Python
|
#! /usr/bin/env python3
|
||
|
"""
|
||
|
python3 demo_repnombres.py
|
||
|
"""
|
||
|
__author__ = "Laure Gonnord"
|
||
|
__copyright__ = "Univ Lyon1, 2019"
|
||
|
|
||
|
# expérimentations autour de la représentation des nombres en python
|
||
|
|
||
|
x = bin(42)
|
||
|
print(type(x)) # c'est une chaîne
|
||
|
print(x)
|
||
|
|
||
|
y = hex(54)
|
||
|
print(y)
|
||
|
|
||
|
z = 67
|
||
|
|
||
|
|
||
|
# on peut utiliser le formattage python pour imprimer les rep.
|
||
|
print("my num is 0x{0:02x}".format(z))
|