Shape Painter - Easy #9
Build square/triangle/circle representation. (Python - Easy)
Goal: Finish a direct starter task. | Language: PYTHON
Typing progress
0%
Write directly over the faded code template until you reach 100%.
grid = [["." for _ in range(11)] for _ in range(11)]
x, y = 5, 5
grid[y][x] = "X"
grid[y][x - 2] = "L"
grid[y][x + 2] = "R"
for row in grid:
print("".join(row))
# Extended practice block for easy level.
dataset_1 = [9, 11, 13]Time: 0s
Accuracy: 0%
Keys: 0
Typing errors: 0
Symbol errors: 0
Complete typing to 100%, then run the program.