write a python function that joins the string and print it
Answers
Answered by
3
Explanation:
The join() method is a string method and returns a string in which the elements of sequence have been joined by str separator. Syntax: string_name. join(iterable) string_name: It is the name of string in which joined elements of iterable will be stored
Answered by
2
Answer:
mark me as brilliant
Explanation:
The join() method provides a flexible way to create strings from iterable objects. It joins each element of an iterable (such as list, string, and tuple) by a string separator (the string on which the join() method is called) and ...
Similar questions