Python’s ‘property’ Decorator: Customized Attribute Access
https://medium.com/@mr.stucknet/pythons-property-decorator-customized-attribute-access-77dbf365e746
https://medium.com/@mr.stucknet/pythons-property-decorator-customized-attribute-access-77dbf365e746
Medium
Python’s ‘property’ Decorator: Customized Attribute Access
Another thing that would be a crime not to mention is the property decorator. Imagine that you have an age attribute in a Person class and…
Understanding *args and **kwargs in Python with an additional Django example
https://medium.com/@elijahobara/understanding-args-and-kwargs-in-python-with-an-additional-django-example-fc0eb5313b2d
https://medium.com/@elijahobara/understanding-args-and-kwargs-in-python-with-an-additional-django-example-fc0eb5313b2d
Medium
Understanding *args and **kwargs in Python with an additional Django example
When I started learning Python, I was very confused regarding what args, kwargs, * and ** does. And I feel there are many like me who had…
Linear Regression with Gradient Descent from Scratch
https://dzdata.medium.com/linear-regression-with-gradient-descent-from-scratch-ed9ad9b9166
https://dzdata.medium.com/linear-regression-with-gradient-descent-from-scratch-ed9ad9b9166
Medium
Linear Regression with Gradient Descent from Scratch
Linear regression is a sort of supervised learning model that lets us find a linear relation between the data (features) and the results…
Beyond Entertainment: An Exploratory Data Deepdive!
https://blog.jovian.com/beyond-entertainment-an-exploratory-data-deepdive-e02b0c469a75
https://blog.jovian.com/beyond-entertainment-an-exploratory-data-deepdive-e02b0c469a75
Medium
Beyond Entertainment: An Exploratory Data Deepdive!
Data Insights into Video Game Sales History
AutoML for Algorithmic Trading Strategy Development
https://theaiquant.medium.com/automl-for-algorithmic-trading-strategy-development-314796c33ac1
https://theaiquant.medium.com/automl-for-algorithmic-trading-strategy-development-314796c33ac1
Medium
AutoML for Algorithmic Trading Strategy Development
Automated Machine Learning (AutoML) plays a crucial role in crafting trading strategies driven by algorithms. In this tutorial, we’re going to walk you through AutoML, why it’s a game-changer in…
Python Robotics: Autonomous Drone Navigation
https://medium.com/@alexandragrosu03/python-robotics-autonomous-drone-navigation-4a9e74c296b
https://medium.com/@alexandragrosu03/python-robotics-autonomous-drone-navigation-4a9e74c296b
Medium
Python Robotics: Autonomous Drone Navigation
Autonomous drone navigation is an exciting and rapidly evolving field within robotics and artificial intelligence. Drones equipped with…
Data Storytelling with Python Altair and Generative AI
https://alod83.medium.com/data-storytelling-with-python-altair-and-generative-ai-1ebe4ee660aa
https://alod83.medium.com/data-storytelling-with-python-altair-and-generative-ai-1ebe4ee660aa
Medium
Data Storytelling with Generative AI
An overview of my last book, published by Manning Publications
Python in Healthcare: Analyzing Medical Imaging Data
https://medium.com/@alexandragrosu03/python-in-healthcare-analyzing-medical-imaging-data-e73eede66fda
https://medium.com/@alexandragrosu03/python-in-healthcare-analyzing-medical-imaging-data-e73eede66fda
Medium
Python in Healthcare: Analyzing Medical Imaging Data
The healthcare industry has experienced a significant transformation with the integration of technology, and Python, as a versatile…
The Forward Backward-Splitting Method (FBSM) Simply Explained
https://medium.com/@justus.tobias/the-forward-backward-splitting-method-fbsm-simply-explained-cc59b609b2c7
https://medium.com/@justus.tobias/the-forward-backward-splitting-method-fbsm-simply-explained-cc59b609b2c7
Medium
The Forward Backward-Splitting Method (FBSM) Simply Explained
Using simple and understandable terms, along with code snippets (python) to provide a straightforward explanation
Python in Finance: Algorithmic Trading Strategies
https://medium.com/@alexandragrosu03/python-in-finance-algorithmic-trading-strategies-6a3939ef5
https://medium.com/@alexandragrosu03/python-in-finance-algorithmic-trading-strategies-6a3939ef5
Medium
Python in Finance: Algorithmic Trading Strategies
Python has become a go-to language for financial professionals and developers in the finance industry. Its simplicity, versatility, and…
Should I use the print function or logging module??
https://medium.com/@phurhardeen/should-i-use-the-print-function-or-logging-module-17d35ff8ab94
https://medium.com/@phurhardeen/should-i-use-the-print-function-or-logging-module-17d35ff8ab94
Medium
Should I use the print function or logging module??
Logging is a great versatile tool every developer should have under his/her belt, it's use is highly recommended in systems/programs...
Unlocking Survey Secrets: Tagging Themes with Python & ChatGPT
https://isabittar.medium.com/unlocking-survey-secrets-tagging-themes-with-python-chatgpt-5f43df2c46b6
https://isabittar.medium.com/unlocking-survey-secrets-tagging-themes-with-python-chatgpt-5f43df2c46b6
Medium
Unlocking Survey Secrets: Tagging Themes with Python & ChatGPT
Automated Theme Tagging: Visualizing Insights from Survey Comments using ChatGPT and Python
Unveiling the Power of Media Mix Modeling with Python
https://rsfagundes.medium.com/unveiling-the-power-of-media-mix-modeling-with-python-2c2de5b86f19
https://rsfagundes.medium.com/unveiling-the-power-of-media-mix-modeling-with-python-2c2de5b86f19
Medium
Unveiling the Power of Media Mix Modeling with Python
Media Mix Modeling (MMM) is a data-driven approach used by marketers to optimize their advertising spend across various media channels. It…
Understanding *args and **kwargs in Python with an Additional Django Example
https://python.plainenglish.io/understanding-args-and-kwargs-in-python-with-an-additional-django-example-fc0eb5313b2d
https://python.plainenglish.io/understanding-args-and-kwargs-in-python-with-an-additional-django-example-fc0eb5313b2d
Medium
Understanding *args and **kwargs in Python with an Additional Django Example
When I started learning Python, I was very confused regarding what args, kwargs, * and ** does. And I feel there are many like me who had…
Techniques for Printing the Lowercase Alphabet without Newlines in Python
https://medium.com/@Scofield_Idehen/techniques-for-printing-the-lowercase-alphabet-without-newlines-in-python-536077d759ad
https://medium.com/@Scofield_Idehen/techniques-for-printing-the-lowercase-alphabet-without-newlines-in-python-536077d759ad
Medium
Techniques for Printing the Lowercase Alphabet without Newlines in Python
Printing the full lowercase English alphabet sequentially without newlines or spaces between the letters may seem trivial at first glance.