Is their any functions in python to join a list of strings to a single string ?

we know that function has rich set of built in functions in python, so the answer is off course their is a functions in python to join a list of strings to a single string .as the name suggest join() is the function in python to join a list of strings to a single string.Let we check the syntax of join().

string.join(list)

where string is the separator string and list is a list of strings

Example of join function in python

item= [‘ Hello’, ‘good morning ‘]

string = ‘,’.join(item)

print(string)

any functions in python to join a list of strings to a single string

Modules and Packages in Python

Modules and Packages are the most important and widely used concept in python.Modules and Packages support reusability and easy coding for programmers.

What is a Modules in Python

A Modules is simply a single python file with extension .py. Modules contains global variables and group of functions .Modules is a single executable .py files.we can use functions and global variables in module in any python page by simply importing that module in that page.Here is the example usage of a Modules

Module calculator.py

def sum(a,b):
    sum = a + b 
    print("The sum is: ", sum)


Importing and calling that Module

import calculator

calculator.sum(3,4)

Modules and Packages in Python

What is a Packages in Python

Packages is a collections of modules, it simple a directory that contains lots of modules and a __init__.py file.The package may contains sub package .

employee(Package)
| __init__.py (Constructor)
| contact.py (Module)
| department.py (Module)
| salary.py (Module)