Closed edutools-service closed 11 months ago
Hi! Thank you for your feedback.
In the example, list_
have two elements (strings)
list_ = ['Python', 'programming language']
So sep.join(list_)
will joint two elements.
This is equivalent to: 'Python' + ' is a ' + 'programming language'
So, there is no error here.
Python is a programing language is not the correct output "Python is a programming is a language" is the correct output