How many functions are used in the given code?
fileobject=open("practice.txt","r")
str = fileobject.readline()
while str:
print(str)
str=fileobject.readline()
fileobject.close()1.3
2.4
3.5
4.6
Answer:3
Posted Date:-2021-12-12 00:42:43