✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Consider the following Python code of 4 lines, with line numbers (not part of the code) shown on the left. The objective is to write a string onto the file.
1 f = open('Out.txt', 'w')2 f.write("this is the string")3 ...........4 print('Done...')What should fill the blank at line 3 to make the code complete?