以下哪个选项可以正确读取文件"data.txt"的全部内容并返回一个字符串?( )
with open("data.txt", "r") as f:
content = ________
f.readlines()
f.readline()
f.read()
f.read(100)