What is break, continue and pass in Python?

Hi, I want to know What is break, continue and pass in Python

for i in range(21):
     if i == 10:
        print(True," Break Yay we got 10 Break the code ")
        break; 
     else:
        continue;