本文整理匯總了Python中money.Money.convert_to_bit方法的典型用法代碼示例。如果您正苦於以下問題:Python Money.convert_to_bit方法的具體用法?Python Money.convert_to_bit怎麽用?Python Money.convert_to_bit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類money.Money
的用法示例。
在下文中一共展示了Money.convert_to_bit方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: main
# 需要導入模塊: from money import Money [as 別名]
# 或者: from money.Money import convert_to_bit [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")