In this post we demonstrate ways in which you can parse common data formats used in Python.
Articles on game
Code Challenge 12 – Build a Tic-tac-toe Game – Review
By PyBites Team on 1 April 2017
It’s end of the week again so we review the code challenge of this week. It’s never late to sign up, just fork our challenges repo and start coding.
Code Challenge 12 – Build a Tic-tac-toe Game
By PyBites Team on 26 March 2017
Hi Pythonistas, a new week, a new ‘bite’ of Python coding! After last week’s conceptual challenge (generators), we’d like to challenge you this week to build Tic-tac-toe. Every time we do games (previously Word Values and Hangman) we learn a lot. Enjoy and we review solutions end of this week.
Code Challenge 10 – Build a Hangman Game – Review
By PyBites Team on 18 March 2017
It’s end of the week again so we review the code challenge of this week. It’s never late to sign up, just fork our challenges repo and start coding.
Code Challenge 10 – Build a Hangman Game
By PyBites Team on 12 March 2017
A new week, a new ‘bite’ of Python coding! This week we will build a Hangman game. Good luck and have fun.
Code Challenge 02 – Word Values Part II – A Simple Game – Review
By PyBites Team on 20 January 2017
It’s Friday again so we review the code challenge of this week. It’s never late to sign up, just fork our challenges repo and start coding.
Code Challenge 02 – Word Values Part II – A Simple Game
By PyBites Team on 15 January 2017
Using what we’ve learned the last challenge this week we build a simple Scrabble-like game: given a random set of 7 letters build the most valuable word. Good luck!
5 cool things you can do with itertools
By Bob Belderbos on 12 January 2017
Itertools is a very useful module. In this short post I show some 5 examples how you can use it. Some of this stuff might be useful in next week’s challenge …