have a scenario
df has 5 rows
for i in range(len(df)):
print ("\t", i, "Time")
need the output to look like
0 Time
1 Time
2 Time
3 Time
4 Time
How do we make python add the tabs depending on the counter value? Is there a way to do this?
print ("\t" * i, i, "Time")