Example & Tutorial understanding programming in easy ways.

What is the work of the join() function in Python ?

join() method in Python are applicable on list,string,tuple and return a string.


Example:

s="_".join("String") 

print(s)

// S_t_r_i_n_g

Read More →