9951 explained code solutions for 126 technologies


pythonHow to print a list without brackets


list = ["a", "b", "c"]
print(*list, sep = ", ")ctrl + c
list

example list

print(*list

will print the list without brackets

sep = ", "

printed element will be separated by ,