'''編號 購買個數 名稱 ** '''
dict1 =
money = int(input('請輸入您的充值金額:'))
set1 = set()
while true:
print(dict1)
x = input('請輸入您購買的商品編號(或者輸入0結束購物):')
if x in ['0','1','2','3','4','5'] and x.isdigit():
'''購買的商品編號'''
if x == "0":
break
else:
if money >= dict1[x][2]:
set1.add(x)
dict1[x][0] += 1
money -= dict1[x][2]
else:
print(f'餘額僅剩元,商品需要元請重新選擇:')
else:
print('您輸入有誤,請重新輸入')
sum_money = 0
for i in set1:
print(f'編號為的,購物單價為,您此次購物個數為,花費 元')
sum_money += dict1[i][2] * dict1[i][0]
print(f'共計花費元')
經典python基礎小專案練習
3.公升級題 實現乙個整數加法計算器 多個數相加 如 content input 請輸入內容 使用者輸入 5 9 6 12 13,然後進行分割再進行計算。content input 請輸入內容 print content listvar content.split print listvar res...
while 小專案練習
1 用雙層while 寫十行十列小星星 j 0 while j 10 列印一行十個小星星 i 0 while i 10 print end i 1 列印換行 print j 1 2 用雙層while 寫十行十列隔列換色小星星 變數i控制的是列 j 0 while j 10 列印一行十個小星星 變數i...
python資料分析小專案練習
資料來源 小練習import numpy as np import pandas as pd import matplotlib.pyplot as plt plt.rcparams font.sans serif simhei 用來正常顯示中文標籤,否則中文顯示方塊 plt.rcparams ax...