Share Pastebin
Guest
Public paste!

stuffthing

By: a guest | Mar 18th, 2010 | Syntax: Python | Size: 0.27 KB | Hits: 32 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1.  # This Python file uses the following encoding: utf-8
  2.  
  3. string = 'blue00ssèÇò'
  4. pos = 0
  5.  
  6. for x in string:
  7.     if 'a' <= x <= 'z' or '0' <= x <= '9':
  8.         pos = pos + 1
  9.     else:
  10.         break
  11.  
  12. print 'password is up to', pos
  13. print 'password is', string[:pos]