0
What is the use of join method in python?
2 Réponses
+ 6
join is used to combine a list of strings into a single value, with a separator string inbetween (that can also be an empty string).
Example:
https://code.sololearn.com/ch6JlwyNtfTh/?ref=app
+ 1
Now I understand it. Thanks Tibor Santa