الرجوع
تسجيل الدخول

What is the output of the code ?

counter = 10
while counter > 0:
    counter -= 3
    print(counter)
print("This will printed outside the loop")