Just learn a bunch of buzzwords and then when you need to actually get something done ask how to do it on Stack Overflow.
You're now a software developer.
I Googled everything early on. You eventually start remembering things you do everyday
you will always google everything.I was trying to teach myself python programming a few months back. I kept hating myself for having to google how to do shit, until I saw a python developer who was master class (at least comparatively) using google like it was his long lost butt buddy.
I really should go back to it.
you will always google everything.
this is me literally 5 minutes ago, it is now 4:40
View attachment 211374
try:
print "checking for file: " + file
f = open(file, "rb")
except Exception:
if f is not None:
if not f.closed:
f.close()
f = None
time.sleep(sleeptime)
Looks like someone got taught that exceptions and handling them in Python is important.Just because you can, doesn't mean you should.