lfg
<:Tea:612680029171875850> <:Tea:612680029171875850> <:Tea:612680029171875850> E3 cancelled, E4 is in.
Jump to date
Friday, November 16, 2018
Saturday, November 17, 2018
I think that rate is fine
I was worried when you said they buffed it that it was going to be just shinies everywhere
DON'T FORGET ME
import random
characters = u"ABCEDFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz Éé0123456789,.'-♂♀!?:;`“”()…·~#%+*/=⭗○□△◇♣❤♠♦♪☼☁☂☃😐😊😢😠💤⤴️⤵️"
print(characters)
name = ""
for _ in range(random.randint(1,12)):
name += random.choice(characters)
print(name.encode('utf8'))
with open("name.txt",'wb') as f:
f.write(name.encode('utf8'))