Skip to content

Instantly share code, notes, and snippets.

class BigNumber(object):
"""BigNumber stores nonnegative integers.
BigNumber takes a string, of ints and only ints, creates an integer
(not long) representation of that many charactered string of ints.
Any negative int (in form of string) input will be made into the
absolute value (positive) integer equivalent of that input.
"""
def __init__(self,string_literal):