Chào mừng bạn đến blog Ynghialagi.com Trang Chủ

Table of Content

Posts

Python split string into list of tuples Chi tiết

Kinh Nghiệm Hướng dẫn Python split string into list of tuples 2022


Bạn đang tìm kiếm từ khóa Python split string into list of tuples được Cập Nhật vào lúc : 2022-01-17 19:49:03 . Với phương châm chia sẻ Kinh Nghiệm về trong nội dung bài viết một cách Chi Tiết 2022. Nếu sau khi tìm hiểu thêm nội dung bài viết vẫn ko hiểu thì hoàn toàn có thể lại Comments ở cuối bài để Mình lý giải và hướng dẫn lại nha.


Comma-separated string to tuple in Python


By Ankita Khan


In this tutorial, we will learn how to convert the comma-separated string to a tuplein Python.


Nội dung chính


  • Comma-separated string to tuple in Python

  • Program to convert the comma-separated string to a tuple in Python

  • Leave a Reply Cancel reply


  • Before proceeding to the solution, let us understand the problem first with a simple example:


    Consider a comma-separated input string. Our task is to convert the given string to a tuple. We can use the built-in string method split() to fetch each of the comma-separated string into a list and then convert it to a tuple.


    Syntax of split():


    inputstring.split(seperator=None, maxsplit=-1)


    It uses the separator as the delimiter string and returns a list of words from the string. The maxsplit specifies the maximum splits to be done. If it is -1 or not specified then all possible number of splits are made.


    For example:


    >>> ‘Hi Bye Go’.split()

    [‘Hi’, ‘Bye’, ‘Go’]

    >>> ‘Hi Bye Go’.split(maxsplit=1)

    [‘Hi’, ‘Bye Go’]

    >>> ‘Hi,Bye,,Go,’.split(‘,’)

    [‘Hi’, ‘Bye’, ”, ‘Go’, ”]


    Program to convert the comma-separated string to a tuple in Python


    inpstr = input (“Enter comma-separated string: “)

    print (“Input string given by user: “, inpstr)

    tuple = tuple(inpstr.split (“,”))

    print(“Tuple containing comma-separated string is: “,tuple)


    Output:


    Enter comma-separated string: Hi,Bye,Go

    Input string given by user: Hi,Bye,Go

    Tuple containing comma-separated string is: (‘Hi’, ‘Bye’, ‘Go’)


    This program takes an input string from the user containing comma-separated elements. It then displays the same to the user. Then, it uses the split() method to separate the individual elements in the string and this method returns a list of these elements. This list is explicitly converted to a tuple and the contents of the tuple are printed on the screen.


    I hope this tutorial helped you in clearing your concepts. Happy learning!


    Recommended Blogs:
    Multiline string in Python
    Count the number of spaces in a string in Python


    Leave a Reply Cancel reply


    Your email address will not be published. Required fields are marked *


    Comment


    Name *


    E-Mail *


    Please enable JavaScript to submit this form.


    Reply

    2

    0

    Chia sẻ


    Share Link Tải Python split string into list of tuples miễn phí


    Bạn vừa Read nội dung bài viết Với Một số hướng dẫn một cách rõ ràng hơn về Video Python split string into list of tuples tiên tiến và phát triển nhất Share Link Down Python split string into list of tuples miễn phí.


    Hỏi đáp vướng mắc về Python split string into list of tuples


    Nếu sau khi đọc nội dung bài viết Python split string into list of tuples vẫn chưa hiểu thì hoàn toàn có thể lại Comment ở cuối bài để Tác giả lý giải và hướng dẫn lại nha

    #Python #split #string #list #tuples

Post a Comment