Awesome built-in Python functions you need to see

Manpreet Singh
3 min readNov 12, 2021

Welcome back! Python is an awesome programming language with a ton of capability, if you’re new to Python, check out the link below to learn more about this language:

So, let’s talk about some awesome Python functions functions that you need to see!

Bin

First off, the bin() function is a very popular way to actually see the binary string of an integer, this is an example of this function:

x = bin(22)
print(x)

output:

Chr

Next up we have the chr() function, this function generates the string characters within unicode, here is an example:

x = chr(82)print(x)

output:

Len

Next up we have the len() function, this allows us to return the number of characters within a string value, here is an example of this:

x = hex(82)print(len((x)))

--

--