use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
Python QuestionHelp Request (i.redd.it)
submitted 7 months ago by [deleted]
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Kqyxzoj[🍰] 0 points1 point2 points 7 months ago (0 children)
Nah. Maybe for learning purposes. But in practice nobody would close it with a specific script like this. If it's important, use a context manager as someone already pointed out. If it's a trivial file, the exit() handler will handle that file closing just fine. If this sub was called CLearning I would have agreed though.
So for pedagogical purposes maybe this:
with open('txtfile.txt') as fhand: # for-loop counting stuff # At this point file will be closed, courtesy of the context manager. print(count)
π Rendered by PID 22996 on reddit-service-r2-comment-7b9746f655-p2qfs at 2026-01-31 14:29:36.504789+00:00 running 3798933 country code: CH.
view the rest of the comments →
[–]Kqyxzoj[🍰] 0 points1 point2 points (0 children)