Home » 
        Python
    
    Python String join() Method
    
    
    
    
        
            By IncludeHelp Last updated : December 15, 2024
        
    
    Python String join() Method
    The join() is an in-built method in Python and it is used to join elements of the list, string etc with the given str separator.
    Note: Method is called with the separator and as arguments elements are provided, then the final (returned) string is a joined string by the separator string.
    
Syntax
 String.join(iterable)
    
    Example 1: Joining string with hyphen ('-') character
# s as separator string 
s = "-"
# str as sequence of strings
str = ("Hello", "World", "How are?")
# join and print the string
print (s.join(str))
Output
Hello-World-How are?
    Example 2: Joining string with spaces, a student detail is provided as string sequences
# s as separator string (contains - space)
s = " "
# a student details
first_name = "Amit"
second_name = "Shukla"
age = "21"
branch = "B.Tech"
# creating string sequences
str = (first_name, second_name, age, branch)
# value of str before joining
print "str before join..."
print (str)
# join and print the string
print "str after join..."
print (s.join(str))
Output
str before join...
('Amit', 'Shukla', '21', 'B.Tech')
str after join...
Amit Shukla 21 B.Tech
    
    
  
    Advertisement
    
    
    
  
  
    Advertisement