Hard-Coded board1_list = [['*','*','*'], ['*','+','*'], ['*','*','*']] print_board(board1_list) print() #just for a spacer line board2_list = [['*',' ',' ','*'],               ['*',' ',' ','*'],               ['*',' ',' ','*'],               ['*',' ',' ','*']] print_board(board2_list) print() #just for a spacer line board3_list = [['*',' ','*',' ','*'],               [' ','*',' ','*',' '],               [' ',' ',' ',' ',' '],               [' ','+',' ','+',' '],               ['+',' ','+',' ','+']] print_board(board3_list)

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 8PE
icon
Related questions
Question

#Hard-Coded

board1_list = [['*','*','*'],
['*','+','*'],
['*','*','*']]
print_board(board1_list)
print() #just for a spacer line
board2_list = [['*',' ',' ','*'],
              ['*',' ',' ','*'],
              ['*',' ',' ','*'],
              ['*',' ',' ','*']]
print_board(board2_list)
print() #just for a spacer line
board3_list = [['*',' ','*',' ','*'],
              [' ','*',' ','*',' '],
              [' ',' ',' ',' ',' '],
              [' ','+',' ','+',' '],
              ['+',' ','+',' ','+']]
print_board(board3_list)

Overview
Your program will start by defining a function named print_board that will take a nested list and print it out. The dimensions of the nested list will always be equal (i.e. 3x3 or 7x7) and
each item in the list will always be a single character. The hard code at the bottom of the assignment will be copy/pasted after your function definition and will call it appropriately.
Expected Output
Example 1
|*| | |*|
|³| | |*|
|*| | |*|
| |*| |*| |
| |+| |+| |
|+| |+| |+|
Transcribed Image Text:Overview Your program will start by defining a function named print_board that will take a nested list and print it out. The dimensions of the nested list will always be equal (i.e. 3x3 or 7x7) and each item in the list will always be a single character. The hard code at the bottom of the assignment will be copy/pasted after your function definition and will call it appropriately. Expected Output Example 1 |*| | |*| |³| | |*| |*| | |*| | |*| |*| | | |+| |+| | |+| |+| |+|
Specifications
• You should submit a single file called M9A3.py
• It should follow the submission standards outlined here: Submission Standards
• Your program must produce output exactly as mine when passed in lists exactly at mine.
Tips and Tricks
• This is not hard, just detailed. Pay attention.
• If you need some help printing nested loops:
https://youtu.be/sh05VbD2rNI
Hard-Coded
board1_list = [['*',
['*','
['*', '*
print_board(board1_list)
print() #just for a spacer line
board2_list = [['*',
[***,
['*',
[***
print_board (board2_list)
print() #just for a spacer line
board3_list =
[['*',
['
['
*'],
*'],
*'],
print_board (board3_list)
'],
'],
Transcribed Image Text:Specifications • You should submit a single file called M9A3.py • It should follow the submission standards outlined here: Submission Standards • Your program must produce output exactly as mine when passed in lists exactly at mine. Tips and Tricks • This is not hard, just detailed. Pay attention. • If you need some help printing nested loops: https://youtu.be/sh05VbD2rNI Hard-Coded board1_list = [['*', ['*',' ['*', '* print_board(board1_list) print() #just for a spacer line board2_list = [['*', [***, ['*', [*** print_board (board2_list) print() #just for a spacer line board3_list = [['*', [' [' *'], *'], *'], print_board (board3_list) '], '],
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Dictionary
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr