using with block to open python file

with open("harish") as f:

a=(f.readlines(13))

print(a)

'''f=open("harish")

content=f.read()

print(content)'''

Comments

Popular posts from this blog

Steps taken by a compiler to execute a C program

Tokens in C

Variables and Data Types in C