Answers for "output a word in list without brackets python"

2

python program to print list without brackets

lst = [1,2,3,4,5]
print(*lst,end="")

#output
1 2 3 4 5
Posted by: Guest on April-05-2021
1

how to print list without brackets python

print(', '.join(names))
Posted by: Guest on November-02-2020

Code answers related to "output a word in list without brackets python"

Python Answers by Framework

Browse Popular Code Answers by Language