Skip to the content.
Home | Blog | Book Reading |About | All Courses

Executing a Python script

Consider this simple Python script: apples.py count = 5 fruit = "\N{RED APPLE}" print(fruit * count) The expected output of this simple Python script “apples.py” is 🍎🍎🍎🍎🍎... [Read More]

Bash: Convert text to uppercase

We were writing a Bash Shell script where a word is taken as command line argument. This word is then used as key to fetch a line from a csv file and then pull out some specific field in it using awk command. All worked fine, except that... [Read More]

Pandas: Filter Rows based on cell values

One of the coolest tricks in Python when you want to search multiple conditions is the clever use of in operator Let’s say you want to check if the user agrees with your proposal or not. May be you ask for the user’s opinion ( or may be... [Read More]

Interview: How to showcase your work?

“How can I portray my skills in my resume?” This is one question that most Professionals usually ask me about. Most of them usually ask this question when they are moving from one role to another, or from one project to another, or sometimes just completed a Certification Course... [Read More]

Is ChatGPT different from an LLM?

Natural Language Processing (NLP) has gained a lot of momentum in recent times with the advent of the “Transformer” architecture. With it came the LLMs and ChatGPT Often, one wonders what these terminologies are? How are they related to eachother? Instead of me writing the answer for this, I asked... [Read More]