Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # -*- coding: utf-8 -*-
- # list_valid_results.py
- zzz = '''
- good: xyz
- XYZ ƒáíóúñѪº¿⌐¬½¼¡«»░²ï
- 123 τΦΘΩδ∞φε∩≡±≥≤⌠⌡÷≈°∙î
- good: !@#$%^&*()[],.;'":
- !@#$%^&*()[],.;'": {|}~Çüéâäàåçêëè
- XYZ ▒▓│┤╡╢╖╕╣║╗╝╜╛┐└┴┬√ⁿ
- good: 123
- xyz ├─┼╞╟╚╔╩╦╠═╬╧╨╤╥╙╘■₧
- good: XYZ
- 123 ╒╓╫╪┘┌█▄▌▐▀αßΓπΣσµ£¥
- !@#$%^&*()[],.;'": ìÄÅÉæÆôöòûùÿÖÜ¢
- '''.strip().splitlines()
- Vc = ord('z')+1
- for z in zzz:
- if ord(max(z)) < Vc:
- print z
- print
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement