jetbrains-academy / introduction_to_python

Introduction to Python course
MIT License
42 stars 27 forks source link

Example is not correct | Data Structures / Join Method (recovered from failed submission) #239

Open edutools-service opened 3 weeks ago

edutools-service commented 3 weeks ago

Python is a programing language is not the correct output

Error message: "Python is a programming is a language" is the correct output

initially submitted on 9/27/2023 11:25:13

kochaika commented 2 weeks ago

If we are talking about task description, for this example:

list_ = ['Python', 'programming language']  # a list iterable
sep = ' is a '
print(sep.join(list_))  # join with the ' is a ' separator

Correct output is Python is a programming language