In this we are going to see a program on continue statement in nested loop in Python Programming Language.
for i in range(0,10):
for j in range(0,10):
if j==6:
continue
print(i,j)
print("\n")
# Coded By DHIRAJ SHELKE
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP