About 29,300,000 results
Open links in new tab
  1. Create a List of Strings in Python - GeeksforGeeks

    Dec 10, 2024 · We can create a list of strings by using Square Brackets [] . We just need to type the strings inside the brackets and separate them with commas. Let's explore various other …

  2. python: creating list from string - Stack Overflow

    I have list of strings. a = ['word1, 23, 12','word2, 10, 19','word3, 11, 15'] I would like to create a list. b = [['word1',23,12],['word2', 10, 19],['word3', 11, 15]] Is this a easy way to do this?

  3. Python - List of Strings

    In this tutorial, we will learn how to create a list of strings, access the strings in list using index, modify the strings in list by assigning new values, and traverse the strings in list in a loop using …

  4. Python - String List Examples - Dot Net Perls

    Mar 7, 2025 · In string lists, we use the syntax for lists and that of strings together. Literals are often used in examples, but are less useful in real programs. We read in data from files. …

  5. List of Strings in Python: How to Use Them in Your Programs

    Nov 3, 2023 · With this tutorial, you will learn to create and manipulate lists of strings in Python. The syntax to create a list of strings is the standard syntax to create any lists in Python, you …

  6. List of Strings in Python - codingem.com

    To create a list of strings in Python, add comma-separated strings in between square brackets. For example, here is a list of strings that represent names: names = ["Alice", "Bob", "Charlie"]

  7. Python List of Strings: A Comprehensive Guide - CodeRivers

    Mar 26, 2025 · What is a List of Strings? Creating a List of Strings; Usage Methods. Accessing Elements; Modifying Elements; Adding and Removing Elements; Slicing Lists of Strings; …

  8. Mastering Lists of Strings in Python

    Aug 26, 2024 · Creating a List of Strings: In Python, creating a list of strings is straightforward using square brackets [] and separating each string with a comma: Here, we’ve created a list …

  9. List of strings in Python - GeeksforGeeks

    Nov 20, 2024 · In this article, we’ll explore how to create, modify and work with lists of strings using simple examples. We can use square brackets [] and separate each string with a …

  10. Python List of Strings With For Loop - Kinvert

    Apr 12, 2019 · To create a List in Python you give it a name, use the equals operator to assign it a value, then put the individual values between square braces, with each value separated by a …

  11. Some results have been removed
Refresh