Built-in Methods

Using the Python locals() function

Today, we’ll be looking at using the Python locals() function. This is yet another utility function which is quite useful for debugging your program. The locals() function gives us the current local symbol table, as a dictionary. Now, if you’re unsure as to what exactly a local symbol table is, keep reading. Let’s go step

Using the Python locals() function Read More »

What is Python oct() function?

Hey, folks! In this article, we will be focusing on the Octal representation of an integer value using Python oct() function. Getting started with Python oct() function Python has various in-built functions to manipulate and operate over data values. Python oct() method is used to represent the integer value into an Octal format of representation.

What is Python oct() function? Read More »