Created
October 25, 2016 02:21
-
-
Save Kcrong/92c48c30cd99720a2a457d280ea050c6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class A: | |
def __init__(self, percentage): | |
self.percentage = percentage | |
if __name__ == '__main__': | |
data = [A(12), A(32), A(22)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment