• This project
    • Loading...
  • Sign in

2021-1-capstone-design2 / 2015104194

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • 2015104194
  • src
  • collection
  • singer.py
  • GyuhoLee's avatar
    repository cleanup · c9b2f4f7
    c9b2f4f7
    GyuhoLee authored 2021-06-14 07:38:32 +0900
singer.py 210 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10

class Singer:
    def __init__(self):
        self.name = ''
        self.sex = ''
        self.group = ''
        self.fan = 0

    def getRow(self):
        return [self.name, self.sex, self.group, self.fan]