No Image

Create a Python Wordle Clone With Rich

29 8 月, 2023 Real Python 0

In this step-by-step project, you’ll build your own Wordle clone with Python. Your game will run in the terminal, and you’ll use Rich to ensure your word-guessing app looks good. Learn how to build a command-line application from scratch and then challenge your friends to a wordly competition!

No Image

Replacing a String in Python

22 8 月, 2023 Real Python 0

In this video course, you’ll learn how to remove or replace a string or substring. You’ll go from the basic string method .replace() all the way up to a multi-layer regex pattern using the sub() function from Python’s re module.

No Image

Reversing Strings in Python

1 8 月, 2023 Real Python 0

In this video course, you’ll learn how to reverse strings in Python by using available tools such as reversed() and slicing operations. You’ll also learn how to build reversed strings by hand.