'continue' not properly in loop

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rahulvshk123
    New Member
    • Dec 2019
    • 1

    'continue' not properly in loop

    Code:
    print("who are u")
    name = input()
    if name !="password":
        continue
    Last edited by gits; Dec 30 '19, 12:22 PM. Reason: added code tags
  • dev7060
    Recognized Expert Contributor
    • Mar 2017
    • 656

    #2
    The continue statement is used inside loops.

    Comment

    Working...