so.. i want to put all the objects in the list together, and my idea was to create a variable with nothing in it and make a for loop to add the strings to the variable... but it doesn't work :( any help?
I searched for an answer but could not find anything online... I am very noob, so sorry if am wrong.
sounds = ["super", "cali", "fragil", "istic", "expi", "ali", "docious"]
x=""
for s in sounds:
x+s
print(x)
I expected x to be "supercalifragilisticexpialidocious" at the end.