• Tutorials
  • DSA
  • Data Science
  • Web Tech
  • Courses
July 06, 2022 |69.8K Views

Python Program to Split String into List of Characters

  Share  1 Like
Description
Discussion


In this video, we will learn how to convert a string into a list of characters in Python using python. We have divided this video into 3 sections to convert a string into a list of characters in Python.

Below is the list of approaches that we will cover in this section:

1. Concept to Split String into List of Characters
2. Approach using list comprehension
3. Approach using Typecasting

The string split() method breaks a given string around matches of the given regular expression. After splitting against the given regular expression, this method returns a string array. This can be done using list comprehension, which is used for creating new lists from other iterables like tuples, and strings. whereas typecasting provides direct typecasting of string into a list using a list().

Python program to split string into list of characters: https://www.geeksforgeeks.org/python-split-string-into-list-of-characters/