f = open('test.txt', 'r', encoding = 'utf-8')
f.read()
- This program reads the content of test.txt file.
- If test.txt is downstream, the read () function will return the new line's start symbol 'n'.
- You can pass an integer type parameter to read ().
- All of the above answers are correct.