Help me in solving PYTH94 problem

My issue

status : Time limit exceeded
it is showing on the screen what i can do to go on the next step.
i have completed this question but output is like 000000000 and showing time limit exceeded. please help i am learning python from the site and it is the best site to begineer i think.

My code

# Update the code below this line

a = 0
while a < 7:
    print(a)
a = a + 1    

Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone

You have to move the a = a + 1 inside the while by adding four spaces or a tab before it.

Hi @vatshimansh123
In your code move a = a + 1 in the while loop