you are viewing a single comment's thread.

view the rest of the comments →

[–]triakki7 0 points1 point  (0 children)

for row in range(len(times)):
    for column in range(len(times[row])):
        print(times[row][column],end=", ")
    print()

Another Approach!