I am trying to print a list of lists in python using for loops. I am having issues doing so. Ive tried a couple of approaches. Here is what I have:
for r in range(len(priceChart)-1):
for c in range(len(priceChart[0])):
print(priceChart[r][c], end= " ")
print()
I just want each element of the list of lists to be printed out without the brackets or spaces. Thanks!
Please note: I need to use for loops!
Thanks so much!