Stepwise guide to create a strong data science portfolio
https://medium.com/mr-plan-publication/stepwise-guide-to-create-a-strong-data-science-portfolio-c9bc11d1821a
https://medium.com/mr-plan-publication/stepwise-guide-to-create-a-strong-data-science-portfolio-c9bc11d1821a
Medium
Stepwise guide to create a strong data science portfolio
1. Choose relevant projects: Select a few data science projects that demonstrate your skills and interests. These projects can be from your…
Python Basics Exercises- Lists and Tuples
https://medium.com/paulacy-pulse/python-basics-exercises-lists-and-tuples-5fad0b5c3ddc
https://medium.com/paulacy-pulse/python-basics-exercises-lists-and-tuples-5fad0b5c3ddc
Medium
Python Basics Exercises- Lists and Tuples
In this article, you will get hands-on exercises for lists and tuples in Python. You’ll test and reinforce your knowledge of Python lists and tuples and get experience with some good programming…
Unleash the Power of Rich Python
https://medium.com/paulacy-pulse/unleash-the-power-of-rich-python-4e1d37947d19
https://medium.com/paulacy-pulse/unleash-the-power-of-rich-python-4e1d37947d19
Medium
Unleash the Power of Rich Python
The Rich package in Python is a versatile toolkit that allows you to generate beautifully formatted and highlighted text in the console. It goes beyond just formatting text and helps build…
Linear Regression with Python
https://medium.com/@gubrani.sanya2/linear-regression-with-python-ffe0403a4683
https://medium.com/@gubrani.sanya2/linear-regression-with-python-ffe0403a4683
Medium
Linear Regression with Python
Did You Know — Adding = After an Expression in a Python f-string
https://zlliu.medium.com/did-you-know-adding-after-an-expression-in-a-python-f-string-b5cf3a029274
https://zlliu.medium.com/did-you-know-adding-after-an-expression-in-a-python-f-string-b5cf3a029274
Medium
Did You Know — Adding = After an Expression in a Python f-string
# eg. f’{x=}’ returns ‘x=<value_of_x>’
Finding the Perfect Python Code Editor
https://medium.com/paulacy-pulse/finding-the-perfect-python-code-editor-3b7772ac2bcb
https://medium.com/paulacy-pulse/finding-the-perfect-python-code-editor-3b7772ac2bcb
Medium
Finding the Perfect Python Code Editor
When it comes to Python development, choosing the right code editor or integrated development environment (IDE) is crucial for productivity and efficiency. In this tutorial, you will get an overview…
Game Visual Improvements in Python
https://medium.com/paulacy-pulse/game-visual-improvements-in-python-c84fc8f2d431
https://medium.com/paulacy-pulse/game-visual-improvements-in-python-c84fc8f2d431
Medium
Game Visual Improvements in Python
In this tutorial, you will learn how to make visual improvements to a tic-tac-toe game in Python. The focus will be on enhancing the game’s visual appeal when it ends, whether there is a winner or a…
AI Player for Python Game Creation
https://medium.com/paulacy-pulse/ai-player-for-python-game-creation-936e49a60fce
https://medium.com/paulacy-pulse/ai-player-for-python-game-creation-936e49a60fce
Medium
AI Player for Python Game Creation
Creating an AI player for a Python game involves implementing the minimax algorithm to make optimal moves in a turn-based zero-sum game, such as tic-tac-toe. In this tutorial, you will learn how to…
Minimax Player Unbeatable Python
https://medium.com/paulacy-pulse/minimax-player-unbeatable-python-cc217b2fe4e3
https://medium.com/paulacy-pulse/minimax-player-unbeatable-python-cc217b2fe4e3
Medium
Minimax Player Unbeatable Python
In this lesson, you will learn how to create an unbeatable tic-tac-toe player using the minimax algorithm in Python. The minimax algorithm calculates the score associated with a particular move and…
SiS Logging Framework: A Manual Approach
https://medium.com/snowflake/sis-logging-framework-a-manual-approach-9b09548158a2
https://medium.com/snowflake/sis-logging-framework-a-manual-approach-9b09548158a2
Medium
SiS Logging Framework: A Manual Approach
Are you looking to log Streamlit-in-Snowflake application errors for your Snowflake account? Here’s how I approached solving the problem…
Other Enumeration Classes in Python
https://medium.com/paulacy-pulse/other-enumeration-classes-in-python-ba71cc4d88ec
https://medium.com/paulacy-pulse/other-enumeration-classes-in-python-ba71cc4d88ec
Medium
Other Enumeration Classes in Python
The enum module in Python provides additional classes apart from the Enum class, allowing you to create enumerations with specific behaviors. This tutorial will explore the IntEnum, StrEnum, IntFlag…
Tuples vs Strings- Slicing in Python
https://medium.com/paulacy-pulse/tuples-vs-strings-slicing-in-python-2bf047a8b2f5
https://medium.com/paulacy-pulse/tuples-vs-strings-slicing-in-python-2bf047a8b2f5
Medium
Tuples vs Strings- Slicing in Python
Slicing is a useful feature in Python that allows you to extract portions of a sequence like tuples and strings. In this tutorial, we will explore the slicing of tuples and strings and learn how to…
Check Element Existence in Python
https://medium.com/paulacy-pulse/check-element-existence-in-python-41d8ae3bb2ce
https://medium.com/paulacy-pulse/check-element-existence-in-python-41d8ae3bb2ce
Medium
Check Element Existence in Python
Checking for the existence of elements within lists and tuples is a common task in Python. The `in` keyword is used to perform this check. This tutorial will demonstrate how to use the `in` keyword…