A little about strings

Report a typo

Often programmers face a problem that can be solved by analogy. You are already familiar with the string data type. Now you need to study the relevant section of the documentation about strings to solve this problem. In the documentation you will find the necessary similar examples.

Your task is to correct the code so that the output would be the following:

It isn`t in the section 'C:\some\name_of_file'

Sample Input 1:

Sample Output 1:

It isn`t in the section 'C:\some\name_of_file'
Write a program in Python 3
print('It isn`t in the section 'C:\some\name_of_file'')
___

Create a free account to access the full topic