***what is the value? what is the value? what is the value? what is the value? what is the value?
'''
myfile = open('mytext.text')
"""
if I print myfile it will not print
its content I need to use read.()
function to read its content
"""
for line in myfile:
print(line)
"""
Now my question is why when I use this
code it prints each line?? I didn't use
read.() function, how it reach to the
content?? Please help me and thanks.
"""
myfile.close()
'''** did you understand? **