From 4076d78e2604ea95cc7c469864d989d1949550c1 Mon Sep 17 00:00:00 2001 From: krotera <01101011@tuta.io> Date: Fri, 15 Jan 2021 17:44:19 -0500 Subject: Fix tiny typos --- python.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python.html.markdown') diff --git a/python.html.markdown b/python.html.markdown index e21d7dde..39e60455 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -482,7 +482,7 @@ except (TypeError, NameError): pass # Multiple exceptions can be handled together, if required. else: # Optional clause to the try/except block. Must follow all except blocks print("All good!") # Runs only if the code in try raises no exceptions -finally: # Execute under all circumstances +finally: # Execute under all circumstances print("We can clean up resources here") # Instead of try/finally to cleanup resources you can use a with statement @@ -735,7 +735,7 @@ class Human: return "*grunt*" # A property is just like a getter. - # It turns the method age() into an read-only attribute of the same name. + # It turns the method age() into a read-only attribute of the same name. # There's no need to write trivial getters and setters in Python, though. @property def age(self): -- cgit v1.2.3 From 2c8b419c5469b2a213af0d5fb2e440ebc8791ff0 Mon Sep 17 00:00:00 2001 From: benjaminjamesrussell <41921185+benjaminjamesrussell@users.noreply.github.com> Date: Thu, 28 Oct 2021 00:29:54 +0200 Subject: Update python.html.markdown (#4257) --- python.html.markdown | 1 + 1 file changed, 1 insertion(+) (limited to 'python.html.markdown') diff --git a/python.html.markdown b/python.html.markdown index 39e60455..0bd16a80 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -1032,6 +1032,7 @@ print(say(say_please=True)) # Can you buy me a beer? Please! I am poor :( * [The Official Docs](https://docs.python.org/3/) * [Hitchhiker's Guide to Python](https://docs.python-guide.org/en/latest/) * [Python Course](https://www.python-course.eu) +* [Free Interactive Python Course](http://www.Kikodo.io) * [First Steps With Python](https://realpython.com/learn/python-first-steps/) * [A curated list of awesome Python frameworks, libraries and software](https://github.com/vinta/awesome-python) * [30 Python Language Features and Tricks You May Not Know About](https://sahandsaba.com/thirty-python-language-features-and-tricks-you-may-not-know.html) -- cgit v1.2.3