i have this piece of code
file1 = open('text.txt, w)
try:
text = file1.read()
finally:
file1.close()i wish to manage an office task using this small code , how can i implemetn it to function. how can i pars it in a webpage ? -- https://mail.python.org/mailman/listinfo/python-list
