Talk Python to Me: #170 Guido van Rossum steps down
Link: https://talkpython.fm/episodes/show/170/guido-van-rossum-steps-down
This past week we have had a passing of the reigns for Python leadership. Guido van Rossum who created and has been shepherding the language for 30 years has stepped down from decision making around t
Link: https://talkpython.fm/episodes/show/170/guido-van-rossum-steps-down
This past week we have had a passing of the reigns for Python leadership. Guido van Rossum who created and has been shepherding the language for 30 years has stepped down from decision making around t
talkpython.fm
Guido van Rossum steps down
This past week we have had a passing of the reigns for Python leadership. Guido van Rossum who created and has been shepherding the language for 30 years has stepped down from decision making around the Python language.
Made With Mu: Mu 1.0.0!
Link: https://madewith.mu/mu/releases/2018/07/20/mu-1.html
We’re pleased to announce the release of
Mu 1.0.0, a Python code editor for beginner
programmers!
There have been only minor changes since the release candidate, full details
of which can be found in
Link: https://madewith.mu/mu/releases/2018/07/20/mu-1.html
We’re pleased to announce the release of
Mu 1.0.0, a Python code editor for beginner
programmers!
There have been only minor changes since the release candidate, full details
of which can be found in
Made With Mu
Mu 1.0.0!
We’re pleased to announce the release of Mu 1.0.0, a Python code editor for beginner programmers! There have been only minor changes since the release candidate, full details of which can be found in the changelog. As always, feedback and bug reports are…
PyCharm: PyCharm 2018.2 Release Candidate
Link: http://feedproxy.google.com/~r/Pycharm/~3/JCMTX6qp5Zg/
PyCharm 2018.2 is getting closer to its release date, and we’re happy to announce that a release candidate is available for download now.
New in PyCharm
The dot in pytest is no more! If you’re lookin
Link: http://feedproxy.google.com/~r/Pycharm/~3/JCMTX6qp5Zg/
PyCharm 2018.2 is getting closer to its release date, and we’re happy to announce that a release candidate is available for download now.
New in PyCharm
The dot in pytest is no more! If you’re lookin
PyCharm Blog
PyCharm 2018.2 Release Candidate
PyCharm 2018.2 is getting closer to its release date, and we’re happy to announce that a release candidate is available for download now. New in PyCharm The dot in pytest is no more! If you&#…
Bhishan Bhandari: Debugging with breakpoint in Python3.7
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/CxGq7Yh4z_A/
Python has long had a default debugger named pdb in the standard libraries. pdb defines an interactive source code debugger for python programs. The intentions of this post is to clarify through examp
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/CxGq7Yh4z_A/
Python has long had a default debugger named pdb in the standard libraries. pdb defines an interactive source code debugger for python programs. The intentions of this post is to clarify through examp
The Tara Nights
Debugging with breakpoint in Python3.7 - The Tara Nights
Python has long had a default debugger named pdb in the standard libraries. pdb defines an interactive source code debugger for python programs. The intentions of this post is to clarify through examples and explanations what’s with the new built-in breakpoint()…
NumFOCUS: NumFOCUS to Hold 2018 Elections for Board of Directors
Link: https://www.numfocus.org/blog/numfocus-to-hold-2018-elections-for-board-of-directors
The post NumFOCUS to Hold 2018 Elections for Board of Directors appeared first on NumFOCUS.
Link: https://www.numfocus.org/blog/numfocus-to-hold-2018-elections-for-board-of-directors
The post NumFOCUS to Hold 2018 Elections for Board of Directors appeared first on NumFOCUS.
NumFOCUS
NumFOCUS to Hold 2018 Elections for Board of Directors - NumFOCUS
In the coming weeks, NumFOCUS will be holding Board of Directors elections to install a new board of seven members whose terms will begin at our Summit.
Test and Code: 44: Mentoring - Nina Zakharenko
Link: http://testandcode.com/44
Nina Zakharenko is a cloud developer advocate at Microsoft focusing on Python. She's also an excellent public speaker. We talk about her experience with mentoring, both being a mentor, and utilizing m
Link: http://testandcode.com/44
Nina Zakharenko is a cloud developer advocate at Microsoft focusing on Python. She's also an excellent public speaker. We talk about her experience with mentoring, both being a mentor, and utilizing m
Test & Code
Test & Code: 44: Mentoring - Nina Zakharenko
Nina Zakharenko is a cloud developer advocate at Microsoft focusing on Python. We talk about her experience with mentoring, both being a mentor, and utilizing mentors.
Mike Driscoll: Python 101: Episode #16 – The os Module
Link: http://www.blog.pythonlibrary.org/2018/07/21/python-101-episode-16-the-os-module/
In this episode you will learn about Python’s os module. This episode is based on my book, Python 101, which you can get on Leanpub here https://leanpub.com/python_101 or read online at http://python
Link: http://www.blog.pythonlibrary.org/2018/07/21/python-101-episode-16-the-os-module/
In this episode you will learn about Python’s os module. This episode is based on my book, Python 101, which you can get on Leanpub here https://leanpub.com/python_101 or read online at http://python
Bhishan Bhandari: Idiomatic Python – Writing better Python
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/JikkTylN_s4/
This is a follow-up post of Idiomatic Python – Looping Approaches. The purpose of the article is to highlight on better code and encourage it. Looping over dictionary keys >>> books_price = { ... 'Cle
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/JikkTylN_s4/
This is a follow-up post of Idiomatic Python – Looping Approaches. The purpose of the article is to highlight on better code and encourage it. Looping over dictionary keys >>> books_price = { ... 'Cle
The Tara Nights
Idiomatic Python - Writing better Python - The Tara Nights
Writing idiomatic python. How to perform operations on a dictionary. All you need to know about looping key, value in dictionary.
Bhishan Bhandari: Python Decorators – Python Essentials
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/KMQs1RizOxg/
The intentions of this post is to familiarize the concepts of decorators and encourage it’s use. Python allows this special ability to pass a function as an argument to another function that adds some
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/KMQs1RizOxg/
The intentions of this post is to familiarize the concepts of decorators and encourage it’s use. Python allows this special ability to pass a function as an argument to another function that adds some
The Tara Nights
Python Decorators - Python Essentials
The intentions of this post is to familiarize the concepts of decorators and encourage it’s use. Python allows this special ability to pass a function as an argument to another function that adds some extra behavior to the function passed as argument. These…
Bhishan Bhandari: Debugging with breakpoint in Python3.7
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/0NhDXaCirqI/
Python has long had a default debugger named pdb in the standard libraries. pdb defines an interactive source code debugger for python programs. The intentions of this post is to clarify through examp
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/0NhDXaCirqI/
Python has long had a default debugger named pdb in the standard libraries. pdb defines an interactive source code debugger for python programs. The intentions of this post is to clarify through examp
The Tara Nights
Debugging with breakpoint in Python3.7 - The Tara Nights
Python has long had a default debugger named pdb in the standard libraries. pdb defines an interactive source code debugger for python programs. The intentions of this post is to clarify through examples and explanations what’s with the new built-in breakpoint()…
Bhishan Bhandari: Magic Methods in Python – Dunder Methods
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/7bEQNOpwyRw/
Magic methods are the methods that has two underscores as the prefix and suffix to the method name. These are also called dunder methods which is an adopted name for double underscores(methods with do
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/7bEQNOpwyRw/
Magic methods are the methods that has two underscores as the prefix and suffix to the method name. These are also called dunder methods which is an adopted name for double underscores(methods with do
The Tara Nights
Magic Methods in Python - Dunder Methods - The Tara Nights
Magic methods are the methods that has two underscores as the prefix and suffix to the method name. These are also called dunder methods which is an adopted name for double underscores(methods with double underscores). __init__, __str__ are some magic methods.…
EuroPython Society: List of EPS Board Candidates for 2018/2019
Link: https://www.europython-society.org/post/176134445630
At this year’s General Assembly we will vote in a new board of the EuroPython Society for the term 2018/2019.List of Board CandidatesThe EPS bylaws
require one chair and 2 - 8 board members. The follo
Link: https://www.europython-society.org/post/176134445630
At this year’s General Assembly we will vote in a new board of the EuroPython Society for the term 2018/2019.List of Board CandidatesThe EPS bylaws
require one chair and 2 - 8 board members. The follo
EuroPython Society
List of EPS Board Candidates for 2018/2019
At this year’s General Assembly we will vote in a new board of the EuroPython Society for the term 2018/2019.
List of Board CandidatesThe EPS bylaws require one chair and 2 - 8 board members. The...
List of Board CandidatesThe EPS bylaws require one chair and 2 - 8 board members. The...
Weekly Python StackOverflow Report: (cxxxv) stackoverflow python report
Link: http://python-weekly.blogspot.com/2018/07/cxxxv-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2018-07-21 21:21:06 GMTWhat is the n parameter of tkinter.mainloop func
Link: http://python-weekly.blogspot.com/2018/07/cxxxv-stackoverflow-python-report.html
These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2018-07-21 21:21:06 GMTWhat is the n parameter of tkinter.mainloop func
Blogspot
(cxxxv) stackoverflow python report
These are the ten most rated questions at Stack Overflow last week. Between brackets: [ question score / answers count] Build date: 2018...
Justin Mayer: Python Development Environment on macOS High Sierra
Link: https://hackercodex.com/guide/python-development-environment-on-mac-osx/
While installing Python and Virtualenv on macOS High Sierra can be done several ways, this tutorial will guide you through the process of configuring a stock Mac system into a solid Python development
Link: https://hackercodex.com/guide/python-development-environment-on-mac-osx/
While installing Python and Virtualenv on macOS High Sierra can be done several ways, this tutorial will guide you through the process of configuring a stock Mac system into a solid Python development
Hackercodex
Hacker Codex
Hacker Codex features tutorials on Linux servers, Python development, and MacOS tinkering.
Philip Semanchuk: A Python 2 to 3 Migration Guide
Link: http://blog.pyspoken.com/2018/02/13/python-2-to-3-migration-guide/
July 2018 update: I’ll be giving a talk based on this guide at PyOhio next week. If you’re there, please come say hello!
It’s not always obvious, but migrating from Python 2 to 3 doesn’t have to be an
Link: http://blog.pyspoken.com/2018/02/13/python-2-to-3-migration-guide/
July 2018 update: I’ll be giving a talk based on this guide at PyOhio next week. If you’re there, please come say hello!
It’s not always obvious, but migrating from Python 2 to 3 doesn’t have to be an
Mike Driscoll: PyDev of the Week: Christopher Neugebauer
Link: http://www.blog.pythonlibrary.org/2018/07/23/pydev-of-the-week-christopher-neugebauer/
This week we welcome Christopher Neugebauer (@chrisjrn) as our PyDev of the Week! Christopher helped organize North Bay Python and PyCon Australia. He is also a fellow of the Python Software Foundatio
Link: http://www.blog.pythonlibrary.org/2018/07/23/pydev-of-the-week-christopher-neugebauer/
This week we welcome Christopher Neugebauer (@chrisjrn) as our PyDev of the Week! Christopher helped organize North Bay Python and PyCon Australia. He is also a fellow of the Python Software Foundatio
Bhishan Bhandari: File Handling in Python
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/4I-uvlssowQ/
Python has convenient built-ins to work with files. The intentions of this post is to discuss on various modes of open() and see them through examples. open() is a built-in function that returns a fil
Link: http://feedproxy.google.com/~r/TheTaraNights/~3/4I-uvlssowQ/
Python has convenient built-ins to work with files. The intentions of this post is to discuss on various modes of open() and see them through examples. open() is a built-in function that returns a fil
The Tara Nights
File Handling in Python - The Tara Nights
Python has convenient built-ins to work with files. The intentions of this post is to discuss on various modes of open() and see them through examples. open() is a built-in function that returns a file object, also called a handle, as it is used to read or…
Dataquest: Top 20 Python AI and Machine Learning Open Source Projects
Link: https://www.dataquest.io/blog/top-20-python-ai-and-machine-learning-open-source-projects/
Getting into Machine Learning and AI is not an easy task. Many aspiring professionals and enthusiasts find it hard to establish a proper path into the field, given the enormous amount of resources ava
Link: https://www.dataquest.io/blog/top-20-python-ai-and-machine-learning-open-source-projects/
Getting into Machine Learning and AI is not an easy task. Many aspiring professionals and enthusiasts find it hard to establish a proper path into the field, given the enormous amount of resources ava
Dataquest
Top 20 Python AI and Machine Learning Open Source Projects
Great data science programs give real-world practice. Use these open-sourced projects to get started with machine learning and artificial intelligence today.
Sylvain Hellegouarch: How Python and Guido got me my first job and many afterwards
Link: http://www.defuze.org/archives/496-how-python-and-guido-got-me-my-first-job-and-many-afterwards.html
Recently, Guido van Rossum, creator and leader of the Python programming language announced, quite out of the blue for the distant pythonista, that he was resigning from his role as the leader of the
Link: http://www.defuze.org/archives/496-how-python-and-guido-got-me-my-first-job-and-many-afterwards.html
Recently, Guido van Rossum, creator and leader of the Python programming language announced, quite out of the blue for the distant pythonista, that he was resigning from his role as the leader of the
Curtis Miller: Unpacking NumPy and Pandas: The Book Is Coming Soon!
Link:
The team at Packt will internally turn the video course Unpacking NumPy and Pandas into a book. This means there will be yet another format for people to learn from me about NumPy and Pandas.
Link:
The team at Packt will internally turn the video course Unpacking NumPy and Pandas into a book. This means there will be yet another format for people to learn from me about NumPy and Pandas.