List is a collection of value
Para=[]
Print(type(para))
Output
<class 'list'>
para=["vijay","sanjay","ram"]
print(para)
output
['vijay', 'sanjay', 'ram']
If we want to remove the square bracket in the output means we can use join function
This join function use only string not int data type.
para=["vijay","sanjay","ram"]
print(','.join(para)) instead we use any symbol(| , . )
output
vijay,sanjay,ram
if we print 1st value means
para=["vijay","sanjay","ram"]
print(para[0]) - > using index value we can print the value
Output
vijay