Question

    How do you open a file in read mode in Python?

    A open("file.txt", "w") Correct Answer Incorrect Answer
    B open("file.txt", "r") Correct Answer Incorrect Answer
    C open("file.txt", "a") Correct Answer Incorrect Answer
    D open("file.txt", "x") Correct Answer Incorrect Answer
    E open("file.txt", "t") Correct Answer Incorrect Answer

    Solution

    Explanation: To open a file in read mode, you use the open() function with the "r" mode. This will allow you to read the contents of the file but not modify it.

    Practice Next