How to convert an integer number to an octal string in Python

2 Answers

0 votes
print(oct(10))

s = oct(-5)
print(s)

'''
run:
 
0o12
-0o5

'''

 



answered Nov 21, 2018 by avibootz
0 votes
print(format(10, '#o'))
print(format(10, 'o'))


'''
run:
 
0o12
12

'''

 



answered Nov 21, 2018 by avibootz

Related questions

2 answers 213 views
1 answer 153 views
1 answer 205 views
205 views asked Jul 23, 2020 by avibootz
1 answer 116 views
116 views asked Jul 23, 2020 by avibootz
2 answers 153 views
...