-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path300.py
26 lines (24 loc) · 1.17 KB
/
300.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 300 followers
from base64 import b64encode, b64decode
from zlib import compress, decompress
three = [
" ...",
" ,,,,,,,,,,,,,,,,,,.,,, .,,,,,,.,,, ..,,,,,,,,,",
" .,,,,.,,...,,,,. .,,,,,... ,,,",
" .,,,,. . ...,,. .,,. ,,,",
" ..,,,,,,,,,,.,,,, .,, ,, .,,,,",
" ,,,,,....,,... ,,,,,,,,,,,...",
" .,,,,,,..,,,,. .. . ,. ..,.. .",
" .,,,. . . ,.....,",
" .,,... . , ., .",
" .,. . . ... . .",
" , .",
" .",
" Celebrating 300 followers on SoloLearn!"]
message = "\n".join(three)
stream = message.encode("utf-8")
comp = compress(stream)
dec = b64encode(comp)
print(dec)
msg = b'eJyFUEEKAjEQu/cV472EBZ/g1ZsvWKGKUFqogt+3qd3tDBUsuzCTJmlmRP4cAE78dFB/3pqO7J3hjEtn4UuAhgn2Xsk2HqRpYM10q2Tq+ZbJK4mMrrubhJtRi4MtlJ6Yi5hmIj4mqppaeGb2rJ1l29QE+bUHoQcfCzHU6szrbovZTiAdA/aSnWvS3wfzGgx8CjFcy/p6pLscl0VuOcb8DuUpOcklx3wOa0mHDx7UW7Y='
print(decompress(b64decode(msg)).decode('utf-8'))