python print list without brackets in f statement code example
Example 1: python program to print list without brackets
lst = [1,2,3,4,5]
print(*lst,end="")
#output
1 2 3 4 5
Example 2: how to print a list without the brackets in python
names = ["jeff", "Mike", "Mario"]
#if you want to print in seperate lines
for x in range(len(names)):
print(names[x])
#If you want to print in same line
for x in range(len(names)):
print(names[x], end=" ")