Hope you're all well, I wanted to use a dictionary that I found on the internet for a code I have but unfortunately, it was not in the format I wanted it to be in therefore I created this little code to help me put all of the 3000 words in my desired format.
The code worked when I inputted words separated by space however it did not work with the words I got from the website because, on the site, every word was put on a different line like So:
word 1
word 2
Here is my code, I can't get my head around how I can fix it.
wordlist = input ("type the words\n")
wordsSplitted = wordlist.split()
print('"{},"', wordsSplitted )
