Answer:
words = ['is', 'NLP', 'fun', '?']
tmp = words[1]
words[1] = words[0]
words[0] = tmp
words[3] = '!'
print(words)
Explanation:
- Create the list
- Assign the new values using <em>tmp</em> variable
- Print the result
Since tuples in Python are unchangeable, you cannot transform the list using tuple assignment.
Answer:
hi, try using Code Plans
Explanation:
it is a free website that include videos and articles on this stuff
Answer:
positive bc you can learn from them wwhat to do what not to do mistakes that you wont make in. real life