oct()
EngOmarElsayed6 total contributions
Published May 16, 2023
Contribute to Docs
The oct()
function takes an integer and returns the corresponding octal string.
Syntax
oct(integer)
Where integer
is the value to be converted into an octal string.
The function returns an octal string.
Example
This example returns the octal string for the value 10
.
# Calling functionval = oct(10)# Displaying resultprint("Octal value of 10:",val)
This example results in the following output:
Octal value of 10: 0o12
Codebyte Example
In Python, binary and hexadecimal values are integer values. So, the oct()
function can convert binary and hexadecimal values as well.
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.