

InterviewSolution
Saved Bookmarks
1. |
What is the current syntax of remove() a file?(a) remove(file_name)(b) remove(new_file_name, current_file_name,)(c) remove(() , file_name))(d) none of the mentionedI had been asked this question in homework.My question is taken from Files topic in chapter Regular Expressions and Files of Python |
Answer» CORRECT OPTION is (a) REMOVE(file_name) The EXPLANATION: remove(file_name) |
|