Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # -*- coding: utf-8 -*-
- # IMDb.py
- zzz='''
- '''.splitlines()
- t = []
- ttt = []
- while zzz:
- z = zzz.pop(0)
- if any([y in z for y in ['(2','(1']]):
- x='\n'.join(t)
- if not any([y in x for y in [' )','TV Special)']]):
- ttt+=t[:-2]
- t=['___\n',z]
- else:
- sss=''
- for x in z:
- if ord(x) < 128:
- sss+=x
- else:
- sss+='%'
- sss = sss.replace('%%','%')
- t+=[sss.strip()]
- for z in ttt+t[:8]:
- print z
- print
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement