Skip to content

Instantly share code, notes, and snippets.

@jerluc
Created July 15, 2016 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jerluc/dc324b4476a80e2de5eefa22bac8f03d to your computer and use it in GitHub Desktop.
Save jerluc/dc324b4476a80e2de5eefa22bac8f03d to your computer and use it in GitHub Desktop.
while True:
stuff = raw_input("Write some stuff with more than 4 characters!")
if len(stuff) < 4:
print "Boo. That was too short. Try again."
pass
else:
print stuff[3:len(stuff) +1]
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment