python make list of string code example
Example: 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
n = ["Hello"," I'm " , "12" , " Years Old "] # Our list
String = "" # Our string
for x in n :
String += x
print(String) #Prints it