本文整理汇总了Python中money.Money.add方法的典型用法代码示例。如果您正苦于以下问题:Python Money.add方法的具体用法?Python Money.add怎么用?Python Money.add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类money.Money
的用法示例。
在下文中一共展示了Money.add方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from money import Money [as 别名]
# 或者: from money.Money import add [as 别名]
def main():
money = Money(0)
while True:
try:
what = int(raw_input("\nWhat do you want to do today?"
"\n 1. Go home \n"
"\n 2. Deposit money \n"
"\n 3. Extract money \n"
"\n 4. Deposit bitcoins \n"
))
if what == 1:
print("Yay...")
sys.exit()
if 2 == what:
print("\n Current balance: ${} ".format(money.get_amount()))
amount = float(raw_input("Please enter the amount to add: \n "))
money.add(amount)
print("\n New balance: ${} ".format(money.get_amount()))
if 3 == what:
print("Current balance: ${} ".format(money.get_amount()))
amount = float(raw_input("Please enter the amount to extract: \n"))
money.subtract(amount)
print("New balance: ${} ".format(money.get_amount()))
if 4 == what:
print("\n Current balance: ${} ".format(money.get_amount()))
amount = float(raw_input("Please enter the amount of bitCoinZ to deposit: \n"))
bc = Money(amount)
money.add(bc.convert_to_bit())
print("\n New balance: ${} ".format(money.get_amount()))
except Exception:
print("Nope")
示例2: test_add
# 需要导入模块: from money import Money [as 别名]
# 或者: from money.Money import add [as 别名]
def test_add(self):
money = Money(12.5)
money.add(1.0/2)
self.assertEquals(13, money.get_amount())
示例3: main
# 需要导入模块: from money import Money [as 别名]
# 或者: from money.Money import add [as 别名]
def main():
# Use these to test the constructor and getters
m1 = Money()
m2 = Money()
print "Constructors, getters:"
print "m1 dollars =", m1.getDollars()
print "m1 cents =", m1.getCents()
print "m2 dollars =", m2.getDollars()
print "m2 cents =", m2.getCents()
# Use these to test the setters
m1.setDollars(1)
m1.setCents(20)
m2.setDollars(1)
m2.setCents(190)
print
print "setters:"
print "m1 dollars =", m1.getDollars()
print "m1 cents =", m1.getCents()
print "m2 dollars =", m2.getDollars()
print "m2 cents =", m2.getCents()
# Use these to test the __str__
print
print "__str__:"
print "m1 =", m1
print "m2 =", m2
# Use this to test increment
m2.setCents(50)
print
print "Before increment:"
print "m1 =", m1
print "m2 =", m2
m1.increment(m2)
print "After increment, m1 =", m1
# Use this to test increment more
m1.setDollars(1)
m1.setCents(20)
m2.setCents(90)
print
print "Before increment with carry:"
print "m1 =", m1
print "m2 =", m2
m1.increment(m2)
print "After increment with carry, m1 =", m1
# Use this to test add
m1.setDollars(1)
m1.setCents(20)
m2.setDollars(1)
m2.setCents(50)
print
print "Before add:"
print "m1 =", m1
print "m2 =", m2
m3 = m1.add(m2)
print "After add, m3 =", m3
# Use this to test add more
m2.setCents(90)
print
print "Before add with carry:"
print "m1 =", m1
print "m2 =", m2
m3 = m1.add(m2)
print "After add with carry, m3 =", m3