Python oct()
The oct() function takes an integer and returns the corresponding octal string.
- Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
- Includes 6 CoursesIncludes 6 Courses
- With Professional CertificationWith Professional Certification
- Beginner Friendly.75 hours75 hours
- Learn the basics of Python 3.12, one of the most powerful, versatile, and in-demand programming languages today.
- With CertificateWith Certificate
- Beginner Friendly.24 hours24 hours
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)Copy to clipboardCopy to clipboard
This example results in the following output:
Octal value of 10: 0o12Copy to clipboardCopy to clipboard
Codebyte Example
In Python, binary and hexadecimal values are integer values. So, the oct() function can convert binary and hexadecimal values as well.
Visit usVisit usCodeHide codeOutputHide outputCopy to your clipboard
All contributors
Learn Python on Codecademy
- Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
- Includes 6 CoursesIncludes 6 Courses
- With Professional CertificationWith Professional Certification
- Beginner Friendly.75 hours75 hours
- Learn the basics of Python 3.12, one of the most powerful, versatile, and in-demand programming languages today.
- With CertificateWith Certificate
- Beginner Friendly.24 hours24 hours
