Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Victor Aurélio

Victor Aurélio

Victor Aurélio has asked 13 questions and find answers to 5 problems.

Stats

258
EtPoint
74
Vote count
13
questions
5
answers

About

SOreadytohelp

Lover programming...

class Programmer(object):
    name = ""
    langs = []
    mail = ""
    def print_person(self):
        print "Programmer Name:", self.name
        print "Programming languages:", self.langs
        print "Contact:", self.mail

p = Programmer()
p.name = "Victor Aurélio Santos"
p.mail = "[email protected]"
p.langs = ["python", "c", "c++", "shell script", "lua", "php", "javascript", "..."]

p.print_person()