day 4-6 python (지도 만들기?)
Instructions You are going to write a program that will mark a spot with an X. In the starting code, you will find a variable called map. This map contains a nested list. When map is printed this is what the nested list looks like: [['⬜️', '⬜️', '⬜️'],['⬜️', '⬜️', '⬜️'],['⬜️', '⬜️', '⬜️']] This is a bit hard to work with. So on lines 6 and 23, we've used this line of code print(f"{row1}\n{row2}\..
2023.02.24