Help me in solving PYTHCLOP02 problem

My issue

I am Typing To Solve This But I Can’t Please Help me To Understand Or Solving This

My code

length = 10  
length 10/= 3  
print(length)

Learning course: Learn Python Programming
Problem Link: https://www.codechef.com/learn/course/rcpit-python/RCPITPY08/problems/PYTHCLOP02

Hello there,
the problem with you code is that you havent used assignment operator correctly
“length 10/= 3” this is invalid syntax.
the short hand usage of operator is length/=3 and this wont give you remainder. for remainder you need to use length%=3