VOOZH about

URL: https://www.codecademy.com/resources/docs/python/built-in-functions/oct

⇱ Python | Built-in Functions | oct() | Codecademy


Skip to Content

Python oct()

Preview: @EngOmarElsayed 6 total contributions
@EngOmarElsayed

6 total contributions

Published May 16, 2023

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 function
val =oct(10)
# Displaying result
print("Octal value of 10:",val)
Copy to clipboard
Copy to clipboard

This example results in the following output:

Octal value of 10: 0o12
Copy to clipboard
Copy 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 us
Visit us
Hide code
Code
Output
Hide output
Copy 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