Trying to make a simple map for my player and the map uses multiple rows but is there a way i can store all of these rows to 1 variable? so i can print them all at once at also i can call upon them like print(row[2][4])
row1 = [" -", " -", " -", " -", " -", " -", " -"]
row2 = [" -", " -", " -", " -", " -", " -", " -"]
row3 = [" -", " -", " -", " -", " -", " -", " -"]
row4 = [" -", " -", " -", " -", " -", " -", " -"]
row5 = [" -", " -", " -", " -", " -", " -", " -"]
row6 = [" -", " -", " -", " -", " -", " -", " -"]
row7 = [" -", " -", " -", " -", " -", " -", " -"]
i understand i could condense this to a function and print it at once but i want to call upon it as stated above