Python Reverse String: A Guide to Reversing Strings
Learn how to use Python to reverse a string. Learn how to use 6 ways, including developing a custom function to make your code more readable.
Learn how to use Python to reverse a string. Learn how to use 6 ways, including developing a custom function to make your code more readable.
In this tutorial, you’ll learn how to use the Python ord and chr functions to allow you to work better with Unicode. The Unicode standard has replaced many confusing encodings and is used to represent each character (including emojis) with… Read More »Python Ord and Chr Functions: Working with Unicode
When working with strings in Python, you will often find yourself needing to remove a prefix or a suffix. For example, file names may be prefixed with a certain string and you want to remove that prefix when renaming files.… Read More »How to Remove a Prefix or Suffix from a String in Python
Being able to work with strings is an essential skill for a Python developer of any skill level. One of the most common operations you’ll run into is needing to capitalize different characters. For example, you may want to convert… Read More »Convert a String to Title Case in Python with str.title()
Python lists are a common data type you’ll use to store data. Because they’re mutable (meaning they can be changed) and heterogeneous (meaning they can store different types of data), Python lists are very popular. Being able to add items… Read More »How to Append a String to a List in Python
The Python startswith method is used to check if a string starts with a specific substring. In this tutorial, you’ll learn how to use the Python startswith function to evaluate whether a string starts with one or more substrings. Being… Read More »Python String startswith: Check if String Starts With Substring
The Python endswith method is used to check if a string ends with a specific substring. In this tutorial, you’ll learn how to use the Python endswith method to evaluate whether a string ends with one or more substrings. Being… Read More »Python String endswith: Check if String Ends With Substring
Working with strings is an essential skill for a Python developer of any skill level. In many cases, this means cleaning strings, such as trimming either the front or end of a string. In this tutorial, you’ll learn how to… Read More »How to Remove First or Last Character From a Python String
In this tutorial, you’ll learn how to fix one of the most common Python errors: SyntaxError – EOL while scanning string literal. There are three main causes for this error and this tutorial will help you resolve each of these… Read More »How to Fix: Python SyntaxError – EOL while scanning string literal
In this tutorial, you’ll learn how to use Python to write (or save) to a text file. Python provides incredible opportunity to read and work with text files – being able to save the output to a text file is… Read More »How to Use Python to Write a Text File (.txt)
In this tutorial, you’ll learn how to use Python to check if a string contains another substring. There are a number of ways to use Python to check a string for a substring, including case insensitivity, checking for patterns, and… Read More »Python String Contains: Check if a String Contains a Substring
In this tutorial, you’ll learn how to use Python to check if a string is empty or not. Being able to work with strings and see whether or not they are empty is an important skill to learn. Python strings… Read More »How to Check if a String is Empty in Python