Question: Since I am a beginner, please use the most basic method to answer the questions,please answer this question in Python language! Task 5 : Place

Since I am a beginner, please use the most basic method to answer the questions,please answer this question in Python language!
Task 5: Place ladders on the Board
Write a function named place_ladders (board, NUM SQUARES, NUM LADDERS) that adds three ladders to the board from task 4 above. The ladders should be placed randomly. If the cell has a ladder top represent it with 'L' and ladder bottom with 'l'. Note that we use this representation for snakes and ladders so that when the board is displayed on the screen, the player can clearly see which cells have ladder top and ladder bottom.
Input: The current status of the board, number of squares and number of ladders.
Output: A table that represents the 510 board with snakes and ladders placed on the board in specific places.
For example:
> board = initialise_board (board,NUM_SQUARES)
> board = place_ladders(board,NUM_SQUARES,NUM_LADDERS)
> print_board(board)
Snakes and Ladders Board:

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!