Answers for "list of string in python"

2

how to make a list string in python

n = ["Hello"," I'm " , "12" , " Years Old "] # Our list
String = "" # Our string
for x in n :
    String += x
    
print(String) #Prints it
Posted by: Guest on March-05-2021
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 "list of string in python"

Python Answers by Framework

Browse Popular Code Answers by Language