Answers for "print strings from a list python"

4

python print list as string

list1 = ['1', '2', '3']
str1 = ''.join(list1)
Posted by: Guest on May-11-2020
1

how to print a list of strings in python

lst = ["we", "are", "strings"]
for i in lst:
  print(i)
Posted by: Guest on August-08-2021

Code answers related to "print strings from a list python"

Python Answers by Framework

Browse Popular Code Answers by Language