Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Aviv Shai

Aviv Shai

Aviv Shai has asked 0 questions and find answers to 3 problems.

Stats

293
EtPoint
133
Vote count
0
questions
3
answers

About

def about_me():
    n = [73,  32,  100, 111, 110, 39,  \
         116, 32,  107, 110, 111, 119, \
         32,  119, 104, 97,  116, 32,  \
         116, 111, 32,  112, 117, 116, \
         32,  104, 101, 114, 101, 46]
    l = [chr(i) for i in n]
    return ''.join(l)

print(about_me())

Aviv Shai questions