How to print the conversion of a value to different bases using format in Python

2 Answers

0 votes
print("int: {0:d};  hex: {0:x};  oct: {0:o};  bin: {0:b}".format(58))


 
'''
run:
 
int: 58;  hex: 3a;  oct: 72;  bin: 111010
  
'''

 



answered Jul 29, 2019 by avibootz
edited Jul 29, 2019 by avibootz
0 votes
print("int: {0:d};  hex: {0:#x};  oct: {0:#o};  bin: {0:#b}".format(58))


 
'''
run:
 
int: 58;  hex: 0x3a;  oct: 0o72;  bin: 0b111010
  
'''

 



answered Jul 29, 2019 by avibootz

Related questions

4 answers 289 views
1 answer 162 views
1 answer 185 views
1 answer 163 views
2 answers 224 views
...