Python Basics: Lists and Tuples Exercises
https://medium.com/paulacy-pulse/python-basics-lists-and-tuples-exercises-d3f27bc4f173
https://medium.com/paulacy-pulse/python-basics-lists-and-tuples-exercises-d3f27bc4f173
Medium
Python Basics: Lists and Tuples Exercises
Lists and tuples are essential data structures in Python. They are used to store collections of items and are designed to handle different types of data. In this tutorial, we will cover some…
Python Exercises: Reading and Writing Files
https://medium.com/paulacy-pulse/python-exercises-reading-and-writing-files-e1c4d42c39ed
https://medium.com/paulacy-pulse/python-exercises-reading-and-writing-files-e1c4d42c39ed
Medium
Python Exercises: Reading and Writing Files
Files play a key role in computing as they are used to store and transfer data. In this tutorial, we will explore reading and writing files in Python. We will cover differentiating between text and…
Python String Methods Exercises
https://medium.com/paulacy-pulse/python-string-methods-exercises-b947e3b52cf3
https://medium.com/paulacy-pulse/python-string-methods-exercises-b947e3b52cf3
Medium
Python String Methods Exercises
In this tutorial, we will be exploring Python string methods through a series of exercises. We will cover various aspects of manipulating strings, working with user input, dealing with strings of…
Python Modules and Packages: Exercises
https://medium.com/paulacy-pulse/python-modules-and-packages-exercises-38c2d0f8882d
https://medium.com/paulacy-pulse/python-modules-and-packages-exercises-38c2d0f8882d
Medium
Python Modules and Packages: Exercises
In this article, we will dive into Python modules and packages. These are fundamental concepts in Python that allow you to organize code and reuse functionality across multiple projects. A module in…
Using bpython: An Enhanced REPL
https://medium.com/paulacy-pulse/using-bpython-an-enhanced-repl-ebc9d1040c08
https://medium.com/paulacy-pulse/using-bpython-an-enhanced-repl-ebc9d1040c08
Medium
Using bpython: An Enhanced REPL
The standard Python interpreter allows you to run scripts from files or interactively execute code in a read-evaluate-print loop (REPL). However, the default REPL has limitations. Fortunately…
Building Systems: Python Classes and Exercises
https://medium.com/paulacy-pulse/building-systems-python-classes-and-exercises-cc32d7f8ccd1
https://medium.com/paulacy-pulse/building-systems-python-classes-and-exercises-cc32d7f8ccd1
Medium
Building Systems: Python Classes and Exercises
This exercise course focuses on employing the capabilities of classes to build more complex systems and write readable, reusable code. In this tutorial, you will practice composing classes together…
Object-Oriented Programming Exercises in Python
https://medium.com/paulacy-pulse/object-oriented-programming-exercises-in-python-fe95f3d72946
https://medium.com/paulacy-pulse/object-oriented-programming-exercises-in-python-fe95f3d72946
Medium
Object-Oriented Programming Exercises in Python
In this tutorial, you will explore several exercises related to object-oriented programming (OOP) in Python. If you have completed the Python Basics: Object-Oriented Programming course, you will find…
Conditional Logic and Control Flow Exercises in Python
https://medium.com/paulacy-pulse/conditional-logic-and-control-flow-exercises-in-python-b259959cd867
https://medium.com/paulacy-pulse/conditional-logic-and-control-flow-exercises-in-python-b259959cd867
Medium
Conditional Logic and Control Flow Exercises in Python
In this tutorial, we will review conditional logic and control flow in Python. Conditional logic and control flow are essential concepts in programming that allow you to create programs that can make…
Python Class and Object Basics
https://medium.com/paulacy-pulse/python-class-and-object-basics-3f49800eb763
https://medium.com/paulacy-pulse/python-class-and-object-basics-3f49800eb763
Medium
Python Class and Object Basics
Python includes mechanisms for doing object-oriented programming, where the data and operations on that data are structured together. The class keyword is used to create these structures in Python…
Using Pandas to pick the best first word in Wordle
https://levelup.gitconnected.com/using-pandas-to-pick-the-best-first-word-in-wordle-ec2d06b940be
https://levelup.gitconnected.com/using-pandas-to-pick-the-best-first-word-in-wordle-ec2d06b940be
Medium
Using Pandas to pick the best first word in Wordle
Getting an edge with some analysis
Python: Principles of Writing Object-oriented Code (Part 1)
https://levelup.gitconnected.com/python-principles-of-writing-object-oriented-code-part-1-e811f10aa427
https://levelup.gitconnected.com/python-principles-of-writing-object-oriented-code-part-1-e811f10aa427
Medium
Python: Principles of Writing Object-oriented Code (Part 1)
Python is a language that supports multiple programming styles. Faced with the same requirements, programmers with different backgrounds…