Python Function Guide: Day 3

Miscellaneous Notes
2 min readApr 14, 2021

Hello all,

This is post 3 of my 12 posts of re-learning python. I am writing about atlest 5 functions I learned during the day at work here on my post. At the end of 12 days, the aim is to be better at python than I am today.

If you are reading this, this is not a regular tutorial/ how to do this-that page, but a page out my python-re-learning-guide-journal-ish-thing. Only prerequisites are you must know what list, tuple, array, dataframe, series and sets.

Only to make the article attractive!

To add little more structure to the function guide. Let us look at the list of python in-built functions.

Here is a list of all the functions taken from the python official documentation.

https://docs.python.org/3/library/functions.html

I have marked the functions which I think are important to work on for today. I am selecting function which I have came across them atlest once after I learned python. We will try to understand 5 of them today, dict(), dir(),enumerate(), float() and input().

dict()

dir()

enumerate()

float()

input()

Thanks for reading!

If you think there is something I could have done better or I have done wrong, please let me know at methodappend@gmail.com!

--

--