Login and get codingIn this Bite you are going to print a chessboard to stdout (use
Complete
create_chessboard
that takes an optional argumentsize
which sets the dimensions of the board (or grid).This is how it should work:
>>> from chessboard import create_chessboard >>> create_chessboard(2) # # >>> create_chessboard(4) # # # # # # # # >>> create_chessboard(8) # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #Credit to the awesome Eloquent JS book where we got this exercise from (why not try it in JS too?!). Regardless, keep calm and code more Python!