Python Friday #7: Functions

I spent this week consolidating all the things I learned so far of Python. I rewatched a few topics on Pluralsight to fill in gaps I noticed while writing the drafts of the next few posts. That is another positive benefit of trying to blog every week about your progress on learning a new programming …

Read more

Python Friday #6: Control Structures

A big part of programming is to control the flow of your program. With control structures like if/else and loops we can do exactly that. This post is part of my journey to learn Python. You can find the other parts of this series here.   Whitespaces are important You may be used to languages …

Read more

Python Friday #5: Strings

This week I was fixing a bug in a small C# method and wondered how I could do the same string manipulations in Python. Strings seem so simple, but there are many exciting details that are easy to overlook. Therefore, this post dives into strings and how we can manipulate them. This post is part …

Read more