| # -*- coding: utf-8 -*- | |
| ascii_coded = 'ΓββββββββββββββββββββββΓββββββββββββββββββββββΓββββββββββββββββββββββΓββββββββββββββββββββββΓββββββββββββββββββββββΓββββββββββββββββββββββΓββββββββββββββββββββββΓββββββββββββββββββββββΓββββββββββββββββββββββΓββββββββββββββββββββββΓββββββββββββββββββββββΓββββββββββββββββββββββΓ' | |
| ascii_uncoded = ''.join([chr(ord(c)-200) for c in ascii_coded]) | |
| url = 'https://media.giphy.com/media/e24Q8FKE2mxRS/giphy.gif' | |
| message_coded = 'ΔΔ©ΔΆΔ¬Δ©Δ»Γ·ΔΔ©ΔͺΔ΄ΔΓ¨Δ±ΔΆΔΌΔΔΊΔ©Δ«ΔΌΔ±Δ·ΔΆ' | |
| message_uncoded = ''.join([chr(ord(c)-200) for c in message_coded]) | |
| try: | |
| from IPython import display | |
| html = display.Image(url=url)._repr_html_() | |
| class HTMLWithBackup(display.HTML): | |
| def __init__(self, data, backup_text): | |
| super().__init__(data) | |
| self.backup_text = backup_text | |
| def __repr__(self): | |
| if self.backup_text is None: | |
| return super().__repr__() | |
| else: | |
| return self.backup_text | |
| dhtml = HTMLWithBackup(html, ascii_uncoded) | |
| display.display(dhtml) | |
| except ImportError: | |
| print(ascii_uncoded) | |