What is the use of join() for a string rather than list or tuple method?
Answer Posted / chaitanya
The functions and the methods that are used for the functionality uses the string module. This string module is represented as by using the join function in it:
", ".join(['1', '2', '4', '8', '16']) that results in "1, 2, 4, 8, 16"
The string variable that is used provide a fixed string literal to allow the names that are used to be bounded to the strings. join() is a string method that is used to provide a separator string to use the function over the sequence of the string and insert the function to an adjacent elements. The method uses any number of arguments that follow some rules that has to be put up for the sequence objects that the class defines for itself. The join is used for the string module that is used to join the string characters together as it is given in the program. The example is given as:
string.join(['1', '2', '4', '8', '16'], ", ")
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are docstrings in python?
Does python has private keyword in python ? How to make any variable private in python ?
How does the ternary operator work in python?
Why is numpy so fast?
How to redirect the output of a python script from standout(ie., A monitor) on to a file?
What are the benefits of using python? What do you understand of pep 8?
Why pandas is used in python?
What is a docstring?
Which version of python is best?
Should I learn r or python first?
Write a program to draw a board ex: 3by3 or 4by4 etc?
What tools can be used to unit test your python code?
What is the best notepad?
What is sphinx python?
What does len () mean in python?