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!
Will you be the 354th person to crack this Bite?
Resolution time: ~30 min. (avg. submissions of 5-240 min.)
Our community rates this Bite 2.0 on a 1-10 difficulty scale.
» You can do it! 😌