2019-2020/Formations/NSI/Bloc1/diubloc1-files-td5/demo_repnombres.py

22 lines
391 B
Python
Raw Normal View History

2020-05-05 07:53:14 +00:00
#! /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))