TheLearningDev's Blog

TheLearningDev's Blog

Follow
homeBuild Your Own Python Project
Tag

Python 3

#python3

More content

Read more stories on Hashnode


Articles with this tag

A Burned-Out Developer to Indie-Hacker Dev Retro 2022

Bhavani RaviBhavani Ravi
Jan 1, 20235 min read

I always wanted to be a techie. Right from when I knew Software engineering was a profession. Someone who can master any technology, spin up any...

A Burned-Out Developer to Indie-Hacker
Dev Retro 2022

When to use List vs Dict in Python?

Bhavani RaviBhavani Ravi
Oct 28, 20222 min read

Lists Only a single data point for each item To find an item we have to loop the whole list my_books = ["Atomic Habits", "Life is what you make it",...

When to use List vs Dict in Python?

Python: Iterables and Iterators

Bhavani RaviBhavani Ravi
Sep 24, 20222 min read

I was teaching PythonToProject Bootcamp the other day. As an add-on module, I was teaching Iterators and how to implement custom iterators in...

Python: Iterables and Iterators

"yield" keyword in Python

Bhavani RaviBhavani Ravi
Sep 23, 20221 min read

What does the "yield" keyword do in Python? · "yield" is a Python keyword that can be used in a function instead of return. def scale_vector(vector,...

"yield" keyword in Python

How to Clear Python Shell (IDLE)?

Bhavani RaviBhavani Ravi
Jun 23, 20221 min read

Were there times when Python idle prints pages of traceback, or you've fiddled around long enough now you're at the bottom of the screen? All you need...

How to Clear Python Shell (IDLE)?

Python Beginner Mistakes

Bhavani RaviBhavani Ravi
Oct 16, 20214 min read

Tips for writing code like a veteran Pythonista · As a Python trainer, I get to work with pynewbies across the spectrum. It doesn't matter whether they...

Python Beginner Mistakes