17 Jul 2023 Marko Calasan What Is a Moving Average? Calculate It in Python Learn how to calculate Python moving averages and supercharge your data analysis skills! The moving average, also known as a rolling average, running average or running mean, is a critical part of any data scientist’s toolbox. When analyzing datasets like weather patterns and stock market trends, we tend to run into outliers and noise that can obscure the more meaningful trends we’re looking for. In this article, you’ll learn how to use Python to calculate moving averages to “smooth out” noise in your data science code. Read more 25 Jul 2022 Marko Calasan Should I Learn Python? Is Programming Career for Me? Is learning Python and starting a career in programming the path for you? In this article, I’ll help you answer that question. Discover with me the "how" and "why" of coding for beginners! Everyone says that you should “learn to code”. And why not? It’s a career with tons of job openings, opportunities for advancement, and it pays well. But will you find it interesting? Can you think like a programmer? Read more 30 May 2022 Marko Calasan Python’s String format() Cheat Sheet Everything you need to know about formatting strings in Python and the Python formatting mini-language. You may know all kinds of ways to manually manipulate strings in Python – maybe you learned from our Working with Strings in Python course (part of the Python Basics track). Today you will learn about how Python handles string formatting, or the art of combining a string with dynamic data in such a way that it is easily legible by either a human reader or an expecting machine. Read more