當前位置: 首頁>>代碼示例>>Python>>正文


Python Money.add方法代碼示例

本文整理匯總了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")
開發者ID:indera,項目名稱:python_tests,代碼行數:34,代碼來源:checkbook.py

示例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())
開發者ID:indera,項目名稱:python_tests,代碼行數:6,代碼來源:test_andrei.py

示例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
開發者ID:DavidSchirduan,項目名稱:ClassProjects,代碼行數:79,代碼來源:testMoney.py


注:本文中的money.Money.add方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。