Last active
August 29, 2015 14:01
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
class Me(Developer) : | |
@property | |
def education(self): | |
return { | |
"Undergraduate" : ["Saftey Engineering","Shenyang Aerospace University"], | |
"Graduate" : ["Soft Engineering","Liaoning University"]} | |
@property | |
def characteristics(self): | |
return set(["Teamwork", "Devoted", "Creative"]) | |
@property | |
def skills(self) : | |
return { | |
"Language" : ["Python", "Java", "HTML/CSS", "C/C++"], | |
"OS" : ["Linux"] , | |
"Tool" : ["Vim", "Sublime"], | |
"Framework" : ["Django"], | |
"Network" : ["TCP/IP"]} | |
@property | |
def is_geek(self): | |
return True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment