You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I know, there is no advantage to using `f = open() ... f.close()
when a `with open() as f:` will do. The `with` form deals better with
corner cases where program execution ends unexpectedly, and is
generally more Pythonic.
0 commit comments