Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
PyBites Twitter Digest – Issue 24, 2018
By PyBites Team on 22 July 2018
PyBites Twitter Digest – Issue 23, 2018
By PyBites Team on 15 July 2018
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
Watch Me Code – Solving Bite 21. Query a Nested Data Structure
By Bob Belderbos on 14 July 2018
I recorded a video solving Bite 21. Query a nested data structure. The exercise presents us with a dictionary of car manufacturers and their corresponding car models. We will extract various bits and pieces from it as well as sort the nested model lists. This is a common type of data structure so specially for a beginner it is important to have this become second nature. Prepare to learn more about looping, some string operations, and list / dict comprehensions.
PyBites Twitter Digest – Issue 22, 2018
By PyBites Team on 8 July 2018
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
PyBites Twitter Digest – Issue 21, 2018
By PyBites Team on 1 July 2018
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
Why Python is so popular in Devops?
By Rhys Powell on 25 June 2018
Along with the growth of Python for developers in the machine learning and data science space, Python is also a growing language for devops / in the ops tooling side. In this article Rhys will explain why that is …
How Encoding Works in Python
By Aviral Verma on 21 June 2018
We all know that the computer cannot store letters or numbers so we need some kind of mapping from these letters/numbers to bit strings (the only thing a computer can understand). One such known mapping is ASCII. If you’re not sure about ASCII and Unicode, let Aviral give you an introduction …
PyBites Twitter Digest – Issue 20, 2018
By PyBites Team on 18 June 2018
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
PyBites Twitter Digest – Issue 19, 2018
By PyBites Team on 11 June 2018
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
Enough pytest to be Dangerous, 10 Things I Learned Writing Tests for 100 Python (Bites of Py) Exercises
By Bob Belderbos on 7 June 2018
We hit 100 Bite exercises on our Code Platform and that means we have written tests for 100 exercises. In this article I share 10 things I learned about writing test code and pytest.