Recent content by mockingbird

  1. M

    Stuck on Continue Statement: Solving a Python Coding Problem

    Hey! Thanks man, I glad you pointed that out to me. Like I said, was probably a really easy, simple, stupid fix. I feel embarassed now, but like I said I was copying his code, and couldn't figure anything out. Really Appreciate you helping a Noob out.
  2. M

    Stuck on Continue Statement: Solving a Python Coding Problem

    Well my code didn't come out properly, here is the link that I am imitating. The Break Statement and the Continue Statement are the ones that aren't working. http://www.swaroopch.com/notes/Python_en:Control_Flow I am pretty sure that I am putting everything in the way he is telling me.
  3. M

    Stuck on Continue Statement: Solving a Python Coding Problem

    I Have been using A Byte of Python, and I am now stuck on the Continue Statement. Here is my code. #!/usr/bin/python #Filename: continue1.py while True: s = input('Enter something : ') if s == 'quit': break if len(s) < 3: print('Too Small') continue print('Input is of...
Back
Top