Entier hexadécimal,Utiliser0-9、a-fPour représenter un entier,Doit être0xAu début
x= 0xfa
print(x)
D:\python\python.exe D:/pycharm/pythonProjets/subject1.py
250
Process finished with exit code 0
Entier octal,Utiliser0-7Représente un entier,Doit être0oAu début
x= 0o35
print(x)
D:\python\python.exe D:/pycharm/pythonProjets/subject1.py
29
Process finished with exit code 0
Entier binaire,Utiliser0、1Pour représenter un entier,Doit être0bAu début
x= 0b100
print(x)
D:\python\python.exe D:/pycharm/pythonProjets/subject1.py
4
Process finished with exit code 0
x= 250
print(hex(x))
D:\python\python.exe D:/pycharm/pythonProjets/subject1.py
0xfa
Process finished with exit code 0
x= 4
print(bin(x))
D:\python\python.exe D:/pycharm/pythonProjets/subject1.py
0b100
Process finished with exit code 0
x= 29
print(oct(x))
D:\python\python.exe D:/pycharm/pythonProjets/subject1.py
0o35
Process finished with exit code 0