1 | #!/usr/bin/env python2 |
2 | # coding=utf-8 |
3 | |
4 | class My(object): |
5 |
|
6 | def whoami(): |
7 | print "I am he1m4n6a, Novice in Party A's safety company." |
8 | |
9 |
|
10 | def whatIdo(): |
11 | print " - Focus on vulnerability research." |
12 | print " - Security construction and security defense." |
13 | |
14 |
|
15 | def contactMe(): |
16 | print "Wechat: {}".format('Qk1hbWJhXzUyMA=='.decode('base64')) |
17 | |
18 | My.whoami() |
19 | My.whatIdo() |
20 | My.contactMe() |